* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #fff;
  padding: 30px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 400;
}

.contact-header .highlight {
  color: #FDC805;
  font-weight: 600;
}

.contact-header select {
  padding: 8px 12px;
  font-size: 16px;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.full-width {
  grid-column: span 2;
}

.radio-group {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.radio-group label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-group .mobile-wrapper {
  display: flex;
  gap: 8px;
}

.mobile-group select {
  width: 80px;
}

/* CAPTCHA BOX */
.captcha-box {
  margin: 40px auto 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 14px 18px;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.captcha-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-right img {
  width: 40px;
  height: 40px;
}

.captcha-info {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}


.feedback-section {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* .submit-container {
  margin-bottom: 40px;
}

.submit-btn {
  background-color: #FDC805;
  color: white;
  border: none;
  padding: 12px 60px;;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
} */
.submit-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  margin-top: 30px;         /* Add space above if needed */
}

.submit-btn {
  background-color: #FDC805;
  color: white;
  border: none;
  padding: 12px 60px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color:black;
}



.opinion-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
  text-align: left;
}

.opinion-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  text-align: left;
}

.feedback-link {
  color: #FDC805;
  text-decoration: none;
  font-weight: 500;

}

.feedback-link:hover {
  text-decoration: underline;
}


/* Responsive for tablets and below */
@media (max-width: 992px) {
  .contact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .captcha-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 100%;
    padding: 20px;
  }

  .captcha-right {
    justify-content: flex-start;
  }

  .submit-container {
    justify-content: center;
    padding: 0 20px;
  }

  .feedback-section {
    padding: 0 20px;
  }

  .opinion-box h2,
  .opinion-box p {
    text-align: left;
  }
}

/* Responsive for mobile devices */
@media (max-width: 600px) {
  .submit-btn {
    width: 100%;
    font-size: 16px;
    padding: 12px;
  }

  .contact-header h2 {
    font-size: 26px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
  }

  .opinion-box h2 {
    font-size: 18px;
  }

  .opinion-box p {
    font-size: 14px;
  }

  .captcha-info {
    font-size: 11px;
  }

 .captcha-right img {
  width: 32px;
  height: 32px;
}
}


.footer {
    position: relative;
    background-color: #ffcc00;
    color: black;
    padding: 60px 20px 20px;
    overflow: hidden;
  }

  .top-shape {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 140px;
    background-color: #ffcc00;
    clip-path: polygon(0 100%, 25% 0, 100% 40%, 100% 100%, 0% 100%);
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .footer-logo img {
    width: 150px;
    margin-bottom: 10px;
  }

  .footer-logo p {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .footer hr {
    border: none;
    height: 1px;
    background-color:white;
    margin: 20px 0;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 200px;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .footer-column ul {
    list-style: none;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    transition: color 0.3s;
  }

  .footer-column ul li a:hover {
    color: #ddd;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #fff;
  }

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

    .footer-column {
      text-align: center;
    }

    .footer-logo {
      text-align: center;
    }
}
