/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #000000;
  position: relative;
  overflow-x: hidden;
  background: #f5f9ff; /* Softer light blue background */
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.9));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: lowercase;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #00ca00;
}

.heart {
  color: #00ca00;
  margin-right: 0.4rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.logo:hover .heart {
  transform: scale(1.2);
}

.tui-member {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.2rem;
  font-weight: 400;
}

.header-search {
  position: relative;
  flex: 1;
  max-width: 500px;
  margin: 0 1rem;
}

.header-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-search input:focus {
  outline: none;
  border-color: #00ca00;
  box-shadow: 0 0 8px rgba(0, 202, 0, 0.2);
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #00ca00;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.search-btn:hover {
  background: #00cc00;
  transform: translateY(-50%) scale(1.1);
}

.search-btn svg {
  color: #fff;
  stroke-width: 2.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00ca00;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00ca00;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.cta {
  background: #00ca00;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-link.cta:hover {
  background: #00cc00;
  transform: translateY(-2px);
  color: #fff;
}

.nav-link.cta::after {
  display: none;
}

/* Contact Form Section */
.contact-section {
  background: linear-gradient(135deg, #f5f9ff, #e6f0fa); /* Subtle gradient background */
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-container {
  text-align: center;
  z-index: 10;
  width: 100%;
  max-width: 500px;
  padding: 0 1rem;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.contact-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #00ca00;
  border-radius: 2px;
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #f9f9f9); /* Subtle gradient on the form card */
  transition: transform 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: #00ca00;
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group select option[disabled] {
  color: #999;
}

.form-group select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%2300ca00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 1rem center;
  background-size: 12px;
}

.form-group:nth-child(1) input {
  flex: 1;
  min-width: 150px;
}

.form-group .captcha {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-group .captcha label {
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group .captcha input {
  margin: 0;
  width: auto;
}

.form-group .captcha .captcha-image {
  vertical-align: middle;
}

.contact-btn {
  background: #00ca00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background: #00cc00;
  transform: translateY(-2px);
}

/* Footer Section (match main site) */
.footer {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.footer-social, .footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-social p, .footer-contact p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
}
.contact-icons, .social-icons {
  display: flex;
  gap: 0.5rem;
}
.social-icon, .contact-icon {
  font-size: 1.2rem;
  color: #666;
  text-decoration: none;
}
.social-icon:hover, .contact-icon:hover {
  color: #00cc00;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 1rem;
}
.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 0.3rem;
}
.footer-column ul li a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
}
.footer-column ul li a:hover {
  color: #00cc00;
}
.footer-column.preferences select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #000000;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #666;
}
.footer-legal {
  flex: 1;
}
.footer-made {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-made p {
  font-size: 0.8rem;
  color: #666;
}
.footer-made .heart {
  color: #00ca00;
}
.footer-legal-links {
  display: flex;
  gap: 1rem;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: #00cc00;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}