/* Header styles */
.header {
  background: white;
  border-bottom: 1px solid #E2DBD1;
  padding: 17px 0 11px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  padding: 0 60px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #87735C;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px; /* 173.333% */
  letter-spacing: 0.15px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #642D0E;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  gap: 17px;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Hero section */
.hero-section {
  padding: 60px 0 45px 0;
  margin-top: 70px;
}

.hero-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.hero-content {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 25px;
  padding: 35px 40px 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-illustration-left {
  position: absolute;
  top: 27px;
  left: 24px;
}

.hero-illustration-left img, .hero-illustration-right img {
  width: 228px;
  height: auto;
  object-fit: cover;
}


.hero-illustration-right {
  position: absolute;
  top: 27px;
  right: 31px;
}

.hero-trophy {
  margin-bottom: 20px;
  animation: fadeInScale 0.8s ease-out 0.1s both;
}

.badge {
  display: inline-block;
  background-color: #C49D5C;
  border: 1px solid #FFF;
  color: white;
  padding: 7px 45px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 26px; /* 185.714% */
  letter-spacing: 0.14px;
  animation: fadeInScale 0.8s ease-out 0.3s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-title {
  color: #1F2937;
  font-size: 56px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 21px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
  font-family: "Poppins";
  font-style: normal;
  color: #6B7280;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px; /* 186.667% */
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Why join section */
.why-join-section {
  padding-bottom: 45px;
}

.why-join-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.section-title {
    color: #1F2937;
    font-size: 44px;
    font-weight: 700;
    line-height: 160%; /* 70.4px */
    letter-spacing: 0.44px;
    text-align: center;
    margin-bottom: 31px;
    animation: fadeInUp 0.8s ease-out;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  text-align: left;
  padding: 40px 30px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #C49D5C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  font-size: 32px;
  color: white;
}

.feature-title {
    color: #1F2937;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%; /* 38.4px */
    letter-spacing: 0.24px;
    margin-bottom: 5px;
}

.feature-description {
    color: #1F2937;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px; /* 185.714% */
    letter-spacing: 0.14px;
}

/* About Us section */
.about-us-section {
  padding: 60px 0;
  background: white;
}

.about-us-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.about-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-us-title {
    color: #C49D5C;
    font-size: 54px;
    font-weight: 700;
    line-height: 52px; /* 96.296% */
    margin-bottom: 24px;
}

.about-us-description {
  color: #1F2937;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 185.714% */
  margin-bottom: 35px;
}

.about-us-block {
  background: #F9FAFB;
  padding: 17px 31px;
  border-radius: 15px;
  margin-bottom: 22px;
}

.about-us-block-text {
    color: #1F2937;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.14px;
}

.about-us-block-text strong {
  font-weight: 700;
}

.about-us-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Process section */
.process-section {
  padding: 60px 0;
}

.process-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.process-title {
  color: #1F2937;
  font-size: 44px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.44px;
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  background: white;
  border: 1px solid #E2DBD1;
  border-radius: 20px;
  padding: 21px 24px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #C49D5C;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  color: #1F2937;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.step-description {
  color: #1F2937;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* Evaluation section */
.evaluation-section {
  padding-bottom: 45px;
}

.evaluation-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.evaluation-content {
  background: white;
  border: 1px solid #E2DBD1;
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
}

.evaluation-title {
  color: #1F2937;
  font-size: 48px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.48px;
  margin-bottom: 67px;
  animation: fadeInUp 0.8s ease-out;
}

.evaluation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 34px;
  align-items: start;
}

.evaluation-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
}

.criteria-item {
  background: #F9FAFB;
  padding: 24px 26px;
  border-radius: 15px;
  text-align: left;
}

.criteria-title {
  color: #1F2937;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 7px;
}

.criteria-description {
  color: #1F2937;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}

/* CTA section */
.cta-section {
  background: #642D0E;
  padding: 42px 0 0 0;
  position: relative;
  max-height: 750px;
}

.cta-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.cta-content {
  text-align: center;
  color: white;
  padding-bottom: 60px;
}

.cta-badge {
  display: inline-block;
  background-color: #C49D5C;
  color: white;
  padding: 8px 33px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 44px;
  text-transform: uppercase;
  animation: fadeInScale 0.8s ease-out;
}

.cta-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.44px;
  margin-bottom: 36px;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.2px;
  margin-bottom: 60px;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 33px;
  margin-bottom: 44px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 37px 50px;
  border-radius: 20px;
  min-width: 80px;
}

.countdown-number {
  font-size: 70px;
  font-weight: 700;
  line-height: 50px;
  color: white;
  margin-bottom: 20px;
}

.countdown-unit {
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 24px;
}

.btn-cta {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 11px 39px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: white;
  color: #642D0E;
}

/* Partners section */
.partners-section {
  background: white;
  border-radius: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 53px 62px;
  position: relative;
  top: 0;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partners-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 67px;
  align-items: center;
}

.partners-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partners-text {
  text-align: left;
}

.partners-title {
  color: #1F2937;
  font-size: 36px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.36px;
  margin-bottom: 26px;
}

.partners-description {
  color: #1F2937;
  font-family: Poppins;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.14px;
  margin-bottom: 40px;
}

.partners-buttons {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: #642D0E;
  border: 1px solid #642D0E;
}

.btn-outline-white:hover {
  background: #642D0E;
  color: white;
}

/* FAQ section */
.faq-section {
  padding: 210px 0 45px 0;
}

.faq-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.faq-title {
  color: #1F2937;
  font-size: 48px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.44px;
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.faq-accordions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.faq-item:hover {
  border-color: #C49D5C;
  box-shadow: 0 4px 12px rgba(196, 157, 92, 0.1);
}

.faq-item.active {
  border-color: #C49D5C;
  box-shadow: 0 4px 12px rgba(196, 157, 92, 0.15);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 35px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.faq-item.active .faq-header {
  background-color: rgba(196, 157, 92, 0.05);
}

.faq-question {
  color: #1F2937;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: #642D0E;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-icon img {
  width: 100%;
  height: 100%;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 35px;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 35px 24px 35px;
  opacity: 1;
}

.faq-answer p {
  color: #6B7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
  color: #6B7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 15px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer strong {
  color: #1F2937;
  font-weight: 600;
}

/* Footer section */
.footer {
  background: #642D0E;
  padding: 40px 0 15px 0;
  color: white;
}

.footer .container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.footer-logo .logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.social-icons {
  display: flex;
  gap: 20px;
}

.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-column-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 7px;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

/* Mobile menu styles */
.nav-mobile {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #642D0E;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 2000;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #E2DBD1;
  margin-bottom: 30px;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  width: 40px;
  height: 40px;
}

.close-line {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #642D0E;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  color: #642D0E;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid #F9F7F4;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #C49D5C;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
    }
    
  .nav {
    justify-content: space-between;
  }
  
  .nav-right {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .hero-section {
    padding: 80px 0 40px 0;
    margin-top: 60px;
  }
  
  .hero-section .container {
    padding: 0 20px;
  }
  
  .hero-content {
    padding: 40px 20px;
  }
  
  .hero-illustration-left,
  .hero-illustration-right {
    display: none;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .hero-description {
    font-size: 14px;
    line-height: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .why-join-section .container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .about-us-section .container {
    padding: 0 20px;
  }
  
  .about-us-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-us-title {
    font-size: 28px;
    line-height: 32px;
  }
  
  .about-us-block {
    padding: 20px;
  }
  
  .process-section .container {
    padding: 0 20px;
  }
  
  .process-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .process-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .process-steps {
    gap: 15px;
  }
  
  .process-step {
    padding: 20px;
  }
  
  .evaluation-section .container {
    padding: 0 20px;
  }
  
  .evaluation-content {
    padding: 40px 20px;
  }
  
  .evaluation-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .evaluation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .criteria-item {
    padding: 20px;
  }
  
  .cta-section {
    padding: 30px 0 0 0;
  }
  
  .cta-section .container {
    padding: 0 20px;
  }
  
  .cta-content {
    padding-bottom: 40px;
  }
  
  .cta-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .cta-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .countdown-item {
    min-width: 70px;
    padding: 20px 15px;
  }
  
  .countdown-number {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  
  .countdown-unit {
    font-size: 14px;
  }
  
  .partners-section {
    display: none;
  }
  
  .faq-section {
    padding: 30px 0 30px 0;
  }
  
  .faq-section .container {
    padding: 0 20px;
  }
  
  .faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .faq-accordions {
    gap: 15px;
  }
  
  .faq-header {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .faq-answer p,
  .faq-answer ul,
  .faq-answer ol {
    font-size: 14px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-right {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer {
    padding: 30px 0 15px 0;
  }
  
  .footer .container {
    padding: 0 20px;
  }
}

/* Animation styles */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-countdown {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
}

.fade-in-countdown.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Contact page styles */
.contact-page {
  padding: 120px 60px 60px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card {
  background: white;
  border: 1px solid #E2DBD1;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.contact-header {
  padding: 16px 30px;
  border-bottom: 1px solid #E2DBD1;
  background: linear-gradient(356deg, #FFF 3.39%, #EEDED5 150.77%);
}

.contact-title {
    color: #642D0E;
    font-size: 28px;
    font-weight: 700;
    line-height: 161%;
    letter-spacing: 0.28px;
    margin: 0;
    text-align: center;
}

.contact-body {
  padding: 53px 104px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-label {
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 100%; /* 12px */
    letter-spacing: 0.12px;
}

.form-input {
  padding: 15px 20px;
  border: 1px solid #E2DBD1;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Fira Sans', sans-serif;
  transition: all 0.3s ease;
  background: #F9F7F4;
}

.form-input:focus {
  outline: none;
  border-color: #C49D5C;
  box-shadow: 0 0 0 3px rgba(196, 157, 92, 0.1);
}

.form-input::placeholder {
  color: #87735C;
  opacity: 0.7;
}

.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

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

.submit-btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  min-width: 200px;
}

/* Alert styles */
.alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.alert-error h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
}

.alert-error ul {
  margin: 0;
  padding-left: 20px;
}

.alert-error li {
  margin-bottom: 5px;
}

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-page {
    padding: 100px 20px 40px 20px;
  }
  
  .contact-card {
    margin: 0;
    max-width: 100%;
  }
  
  .contact-header {
    padding: 25px 30px;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .contact-body {
    padding: 30px 25px;
  }
  
  .contact-form {
    gap: 20px;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 16px;
  }
  
  .submit-btn {
    width: 100%;
    padding: 15px 20px;
  }
  
  .alert {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* Animation styles */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-countdown {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
}

.fade-in-countdown.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Hero section special animation */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge animation */
.badge {
  animation: fadeInScale 0.8s ease-out 0.3s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero title animation */
.hero-title {
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Hero description animation */
.hero-description {
  animation: fadeInUp 1s ease-out 0.7s both;
}

/* Hero buttons animation */
.hero-buttons {
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Section titles animation */
.section-title, .process-title, .evaluation-title, .faq-title {
  animation: fadeInUp 0.8s ease-out;
}

/* CTA section special animations */
.cta-badge {
  animation: fadeInScale 0.8s ease-out;
}

.cta-title {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-description {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Partners section animation */
.partners-section {
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
