/* css/style.css */
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Medium.ttf') format('truetype');
    font-style: normal;
}

body {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #d3f5fe;
    position: relative;
    overflow-x: hidden;
  }

  /*
  svg {
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.1));
  }
  */
  
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  main{
    margin-top: 80px;
  }

  .main-article{
    width: 100vw;
    justify-content: center;
    text-align: center;
  }

  .main-article .contents{
    line-height: 1000px;
    width: 100%;
    max-width: 1100px;
    background-color: #fff;
  }

  .footer-cloud-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
    margin-bottom: -65px;
  }
  
  .footer-cloud {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(6px -3px 4px rgba(0, 0, 0, 0.1));
  }
  
  /*------------------------- Login Page css ------------------------------*/
.klb-login-container {
  max-width: 360px;
  margin: 20vh auto;
  padding: 0 20px;
  text-align: center;
}

.klb-login-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.klb-login-container h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
}

.klb-login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.klb-login-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  outline: none;
}

.klb-password-wrapper {
    position: relative;
    width: 100%;
}
  
.klb-password-wrapper input {
    width: 100%;
    padding-right: 40px; /* add padding so text doesn't go under icon */
    box-sizing: border-box;
}



.klb-toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}

.klb-login-button {
    display: inline-block;
    background: linear-gradient(to bottom, #FFD233, #E6B900);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px; /* pill shape */
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6), 0 4px 8px rgba(0, 0, 0, 0.2);
    /*
    box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 0px 0px, rgba(255, 255, 255, 0.6) 2px 3px 1px 0px inset, rgba(100, 100, 0, 0.5) -1px -3px 1px 0px inset;
    */
    transition: all 0.2s ease;
}

.klb-login-button:hover {
    background: linear-gradient(to bottom, #ffa70b, #ffac29);
  }
  
.klb-login-button:active {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);  /* darker inner shadow when pressed */
    transform: translateY(1px);
}

.klb-login-note {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}

.klb-login-note a {
  color: #008ecf;
  text-decoration: none;
}

.klb-login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.klb-remember input {
  margin-right: 5px;
}

.klb-forgot {
  color: #007bff;
  text-decoration: none;
}

.klb-forgot:hover {
  text-decoration: underline;
}

/*-------------------- Hero Section -------------------------------------*/
.hero-section {
  background: transparent;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

/* Left dark area */
.hero-left {
  flex: 0 0 calc(70% - 40px);
  background: #2b2b2b;
  color: #fff;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background-image: url(/images/bg-pattern-lines.webp);
  background-repeat: repeat;
  -webkit-background-size: 18rem;
  background-size: 18rem;
}

.hero-left h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-left p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.hero-buttons {
  display: flex;
  gap: 10px;
}

.btn-join {
  display: inline-block;
  background: linear-gradient(to bottom, #12c6e4, #02b6d4);
  color: #fff;
  padding: 12px 24px;
  margin-top: 20px;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.btn-join:hover {
  background: linear-gradient(to bottom, #02b6d4, #02a6c4);
}

.btn-demo {
  background: linear-gradient(to bottom, #FFD233, #E6B900);
}

.btn-demo:hover {
  background: linear-gradient(to bottom, #ffa70b, #ffac29);
}

/* Right light area with grid */
.hero-right {
  flex: 0 0 30%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr; /* 3 rows */
  width: 90%;
  height: 90%;
  gap: 10px;
}

.hero-card {
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  color: #333;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card.orange { background: #ff7a6c }
.hero-card.teal { background: #2acfcf; }
.hero-card.yellow { background: #fdd835; }
.hero-card.empty { background: transparent; }

/* icon / text sizes */
.hero-card .icon { font-size: 1.5rem; }
.hero-card .big-text { font-size: 1.8rem; }

/* Kids images */
.kid-image {
  position: absolute;
  max-width: 300px;
  bottom: 0;
}

.kid-left { left: 400px; }
.kid-right { right: 67px; }

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-container {
    border-radius: 0px;
  }

  .hero-left{
    flex: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-right {
    display: none;
  }

  .kid-image {
    max-width: 80px;
  }
}



/*================= Features =============================== */
.features {
  max-width: 1100px;
  margin: 10px auto;
  padding: 0 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-text {
  flex: 1;
  min-width: 260px;
}

.feature-text h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.feature-text p {
  font-size: 17px;
  margin-bottom: 10px;
  color: #555;
}

/* Mobile: stack image above text */
@media (max-width: 768px) {
  .feature,
  .feature.reverse {
    flex-direction: column;
  }
}
/*==================================== Testimonials ==================================== */

.testimonials {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.testimonials h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  padding-top: 5px;
}

.testimonial {
  flex: 0 0 300px;  /* fixed card width */
  background: #fffaf0;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  border-left: 5px solid #ffb74d;
  transition: 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.testimonial p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

.author {
  font-weight: bold;
  color: #E6B900; /* brand yellow accent */
  font-size: 14px;
}

/*-------------------------- Courses Cards ----------------------------------- */
.courses {
  /* max-width: 1100px; */
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  padding: 20px;
  text-align: center;
  background: #a4e5f782;
  padding-bottom: 40px;
}

.courses h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.course-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.course-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #E6B900; /* brand yellow accent */
}

.course-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.course-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: #555;
}

.course-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #E6B900;
  font-size: 14px;
}

.btn-learn {
  display: inline-block;
  background: #E6B900;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn-learn:hover {
  background: #cf9f00;
}

/*---------------------- Footer ------------------------------------- */
.site-footer {
  background: #f6fcfd;
  color: #333;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #E6B900; /* brand accent */
}

.footer-section p,
.footer-section a {
  color: #555;
  margin: 5px 0;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-cloud-wrapper {
    margin-bottom: -20px;
  }
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.social-icons a {
  color: #555;
  font-size: 18px;
  display: inline-block;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #E6B900; /* brand accent */
}

/*------------------------------ Courses -------------------------------------------------- */
/* Courses Page Styles – Scoped only for .courses-container */
.courses-container {
  font-family: Arial, sans-serif;
  padding: 40px 20px;
}

.courses-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.courses-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.course-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 320px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-card h2 {
  margin: 0 0 5px;
  color: #2c3e50;
}

.course-card .tagline {
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
}

.course-meta, 
.course-details {
  list-style: none;
  padding-left: 0;
  margin: 0 0 15px;
}

.course-meta li {
  font-weight: bold;
  color: #444;
  margin-bottom: 5px;
}

.course-details li {
  color: #555;
  margin-bottom: 4px;
}

.course-price {
  font-size: 1.3em;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 15px;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .courses-grid {
      flex-direction: column;
      align-items: center;
  }
}

/*-------------------------------------------- Resources --------------------------------------------------*/
/* Resources Page Styles */
.resources-container {
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 70px auto;
}

.resources-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
}

.resources-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.resource-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-btn {
  background: #eee;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.filter-btn.active {
  background: #02b6d4;
  color: white;
}

#resource-search {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center; /* ⬅ Centers items horizontally */
}


.resource-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.resource-card:hover {
  transform: translateY(-3px);
}

.resource-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.resource-info {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
}

.resource-desc {
  color: #555;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.resource-meta {
  font-size: 0.8em;
  color: #777;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center; /* ⬅ Vertical centering */
}

.resource-meta .file-icon{
  display: flex;
  align-items: center; 
  gap: 5px;
}


.btn-download {
  display: inline-block;
  
  border: 2px solid #02b6d4;
  color: #02b6d4;
  padding: 12px 24px;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  text-align: center;
}

.btn-download:hover {
  background: linear-gradient(to bottom, #dde4e6, #c7ecf3);
}


/* Responsive: stack cards on mobile */
@media (max-width: 768px) {
  .resource-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .resource-image {
      width: 100%;
      height: auto;
  }
}

/*-------------------------------------------- Register ------------------------------------------------ */
/* Enrollment Page Layout */
.klb-enroll-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0px auto;
  padding: 0 20px;
}

.klb-enroll-steps {
  flex: 1 1 45%;
  min-width: 300px;
}

.klb-enroll-steps h1 {
  font-size: 2rem;
  margin-bottom: 2px;
  color: var(--primary-color, #02b6d4);
}

.klb-enroll-steps p {
  margin-bottom: 5px;
  color: #555;
  margin: 0;
}

.klb-enroll-steps ul{
  margin-top: 0px;
}

.klb-enroll-steps .step {
  margin-bottom: 20px;
  background: #f9fafc;
  padding: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color, #02b6d4);
  padding-top: 4px;
}

.klb-enroll-steps .step h2 {
  margin-bottom: 5px;
  color: var(--primary-color, #02b6d4);
  font-size: 1.2rem;
}

.klb-enroll-form-container {
  flex: 1 1 45%;
  min-width: 300px;
}

.klb-enroll-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.klb-enroll-form h2 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-color, #02b6d4);
}

.klb-enroll-form label {
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  display: block;
}

.klb-enroll-form input,
.klb-enroll-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 5px;
}

.klb-enroll-button {  
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
  background: linear-gradient(to bottom, #12c6e4, #02b6d4);
  color: #fff;
  padding: 12px 24px;
  margin-top: 20px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), 0 2px 4px rgba(0,0,0,0.2);
}

.klb-enroll-button:hover {
  background: linear-gradient(to bottom, #02b6d4, #02b6d4);
}

/* Responsive */
@media (max-width: 900px) {
  .klb-enroll-wrapper {
    flex-direction: column;
  }
}

.klb-enroll-header-bar {
  width: calc(100vw - 30px);
  padding: 30px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.klb-enroll-header-content {
  max-width: 800px;
}

.klb-enroll-header-content h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.klb-enroll-header-content p {
  font-size: 1.1rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .klb-enroll-header-bar {
    padding-top: 0px;
    margin-top: 50px;
  }
}

/*------------------------------------------ FAQ ------------------------------------------------------- */
.faq-container {
  max-width: 1100px;
  margin: 0rem auto;
  padding: 0 1rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #dde4f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 6px rgb(0 0 0 / 5%);
  overflow: hidden;           /* keeps corners tidy when animating */
}

.question {
  all: unset;
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  font: 700 1rem/1.3 "Baloo 2", sans-serif;
  background:#fff9e5;
  color: #555;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.question:hover,
.question:focus-visible {
  background: #f0f0e0;
  box-shadow: 0 4px 10px rgb(0 0 0 / 12%);
  outline: none;
}

.answer {
  max-height: 0;
  padding: 0 1.25rem;
  background: #f9fbff;
  color: #333;
  font: 400 0.95rem/1.55 system-ui, sans-serif;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.answer.show {
  max-height: 100vh;     /* big enough for any content */
  padding: 1rem 1.25rem;
}

[hidden] {
  display: block;
  visibility: hidden;
  height: 0;
  padding: 0 !important;
  margin: 0;
}

/*-------------------------- Call to action bottom bar ---------------------------------*/
/* Call-to-action bar */
.klb-cta-bar {
  /*background: #a4e5f782; */
  background-image: linear-gradient(#a4e5f782, rgb(0 0 0 / 0%));
  padding: 30px 20px;
  text-align: center;
}

.klb-cta-content h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #333;
}

.klb-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.klb-cta-contact {
  font-size: 0.95rem;
  margin-top: 5px;
}

.klb-cta-contact a {
  color: #ff6f61;
  text-decoration: none;
}

.klb-cta-contact a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .klb-cta-content h2 {
      font-size: 1.4rem;
  }
  .klb-btn {
      width: 100%;
      text-align: center;
  }
}

/*-------------------------------------- Meet the team members --------------------------------------- */
/* Team Section */
.klb-team-section {
  background-image: linear-gradient(#a4e5f782, rgb(0 0 0 / 0%));
  padding: 50px 20px;
  text-align: center;
}

.klb-team-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

/* Container for cards */
.klb-team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card Styles */
.klb-team-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.klb-team-card:hover {
  transform: translateY(-5px);
}

.klb-team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.klb-team-card h3 {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #ff6f61;
}

.klb-team-edu {
  font-size: 0.95rem;
  color: #555;
  margin: 5px 0;
  font-style: italic;
}

.klb-team-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 10px 20px 0 20px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .klb-team-container {
      flex-direction: column;
      align-items: center;
  }
}

/*--------------------------------------------- Contact ------------------------------------- */
/* Contact Section Layout */
.klb-contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 5px 20px;
  justify-content: center;
  padding-bottom: 50px;
}

/* Card Style */
.klb-contact-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  flex: 1 1 350px;
  max-width: 500px;
  padding: 25px;
  box-sizing: border-box;
}

.klb-contact-card h2 {
  margin-bottom: 15px;
  color: #02b6d4;
}

.klb-contact-card h3 {
  margin-top: 25px;
  font-size: 1.1rem;
  color: #02b6d4;
  margin-bottom: 0;
}

.klb-contact-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 8px 0;
}

/* Social Icons */
.klb-social-links a {
  display: inline-block;
  margin: 0px 10px 0 0;
  font-size: 1.5rem;
  color: #555;
  padding: 8px 0px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.klb-social-links a:hover {
  color:#E6B900;
}

/* Form Fields */
.klb-contact-form input,
.klb-contact-form textarea {
  width: calc(100% - 30px);
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.klb-contact-form textarea {
  resize: none;
}
