/* Layout - Header and Footer */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0px 0;
  min-height: 60px;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.3);
}

.main-header .btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* Main layout */
main {
  padding: 0;
  margin: 0;
}

section {
  margin-bottom: 0;
}

/* Section containers */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 1px;
  white-space: nowrap;
}

.section-subtitle {
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  font-size: 48px;
  color: var(--color-primary);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Contact section subtitle specific styling */
.contact-section .section-subtitle {
  white-space: normal;
  line-height: 1.4;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  font-family: var(--font-family);
}

.text-highlight {
  color: #fb7c0e;
}

@media (max-width: 1024px) {
  .section-subtitle {
    font-size: 32px;
  }
}
/* Responsive design for section titles and subtitles */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 24px;
  }
  
  .contact-section .section-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .contact-section .section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 18px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .contact-section .section-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .section-title {
    font-size: 16px;
  }
  
  .section-subtitle {
    font-size: 12px;
  }
  
  .contact-section .section-subtitle {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .section-title {
    font-size: 14px;
  }
  
  .section-subtitle {
    font-size: 11px;
  }
  
  .contact-section .section-subtitle {
    font-size: 10px;
  }
}

@media (max-width: 280px) {
  .section-title {
    font-size: 12px;
  }
  
  .section-subtitle {
    font-size: 10px;
  }
  
  .contact-section .section-subtitle {
    font-size: 9px;
  }
}