/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --primary-color: #325e1e; /* Deep navy blue */
  --secondary-color: #3bc400; /* Vibrant teal */
  --accent-color: #6bffd3; /* Soft coral */
  --background-color: #ffffff; /* Clean white */
  --text-color: #2d4830; /* Dark slate */
  --text-light-color: #769671; /* Muted gray */
  --error-color: #68e53e; /* Bright red */
  --success-color: #38a154; /* Lively green */
  --border-color: #e2e8f0; /* Light gray */
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer shadow */
  --transition: all 0.2s ease;
  --border-radius: 8px;
  --container-max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Inter", "Roboto", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-header p {
  color: var(--text-light-color);
  max-width: 600px;
  margin: 1rem auto 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Button Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.button-primary {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.button-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.button-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.button-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.site-header {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 90px;
  width: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 15px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
}

.menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.menu a:hover:after,
.menu a.active:after {
  width: 100%;
}

.menu a.active {
  color: var(--secondary-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-icon,
.menu-icon:before,
.menu-icon:after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  position: relative;
  transition: var(--transition);
}

.menu-icon:before,
.menu-icon:after {
  content: "";
  position: absolute;
}

.menu-icon:before {
  top: -8px;
}

.menu-icon:after {
  bottom: -8px;
}

/* Hero Section
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.hero-section {
  background-image: linear-gradient(
      rgba(26, 41, 66, 0.7),
      rgba(26, 41, 66, 0.7)
    ),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Features Section
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.features-section {
  padding: 80px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-light-color);
  margin-bottom: 0;
}

/* Services Section
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.services-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.service-card:last-child {
  margin-bottom: 0;
}

.service-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-card.reverse .service-image {
  order: 2;
}

.service-card.reverse .service-content {
  order: 1;
}

.service-image {
  position: relative;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.service-features {
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.service-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* About Preview Section
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.about-preview-section {
  padding: 80px 0;
  background-color: white;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-preview-content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-preview-content p {
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light-color);
}

.about-preview-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ Section
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.faq-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 20px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  flex: 1;
}

.faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-toggle:before,
.faq-toggle:after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.faq-toggle:before {
  top: 11px;
  left: 0;
  width: 24px;
  height: 2px;
}

.faq-toggle:after {
  top: 0;
  left: 11px;
  width: 2px;
  height: 24px;
}

.faq-item.active .faq-toggle:after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact Form Section
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.contact-form-section {
  padding: 80px 0;
  background-color: white;
  background-image: linear-gradient(
      rgba(26, 41, 66, 0.9),
      rgba(26, 41, 66, 0.9)
    ),
    url("../images/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.contact-form-section .section-header h2,
.contact-form-section .section-header p {
  color: white;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: white;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-group a {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.site-footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-logo img {
  max-height: 100px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-navigation h4,
.footer-services h4,
.footer-contacts h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-navigation ul,
.footer-services ul,
.footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navigation li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contacts svg {
  margin-right: 10px;
  margin-top: 3px;
}

.footer-navigation a,
.footer-services a,
.footer-contacts a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-navigation a:hover,
.footer-services a:hover,
.footer-contacts a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* Cookie Consent
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookie-content h3 {
  color: white;
  margin-bottom: 10px;
}

.cookie-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  margin: 50px auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light-color);
}

.close-modal:hover {
  color: var(--primary-color);
}

.cookie-settings {
  margin-top: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-header label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.cookie-category-header input {
  margin-right: 10px;
}

.cookie-modal-buttons {
  text-align: center;
  margin-top: 30px;
}

/* Page Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  background-image: linear-gradient(
      rgba(26, 41, 66, 0.8),
      rgba(26, 41, 66, 0.8)
    ),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Programs Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.programs-navigation {
  background-color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 90px;
  z-index: 900;
}

.programs-nav-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.programs-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: max-content;
}

.programs-nav-list li {
  margin-right: 15px;
}

.programs-nav-list li:last-child {
  margin-right: 0;
}

.program-section {
  padding: 80px 0;
}

.program-section:nth-child(odd) {
  background-color: var(--background-color);
}

.program-section:nth-child(even) {
  background-color: white;
}

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

.program-content.reverse .program-image {
  order: 2;
}

.program-content.reverse .program-details {
  order: 1;
}

.program-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-details h2 {
  margin-bottom: 10px;
}

.program-details h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.program-description {
  margin-bottom: 30px;
}

.program-action {
  margin-top: 30px;
}

.pricing-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.pricing-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.pricing-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
}

.pricing-table tr:nth-child(even) td {
  background-color: rgba(212, 175, 55, 0.05);
}

.pricing-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.pricing-notes {
  margin-bottom: 30px;
}

.pricing-notes p {
  color: var(--text-light-color);
  font-size: 0.9rem;
}

.pricing-action {
  text-align: center;
}

.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

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

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 60px;
  color: var(--secondary-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-author p {
  color: var(--text-light-color);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-cta-section {
  padding: 80px 0;
  background-image: linear-gradient(
      rgba(26, 41, 66, 0.9),
      rgba(26, 41, 66, 0.9)
    ),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.contact-cta-content h2 {
  color: white;
  margin-bottom: 15px;
}

.contact-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* About Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.about-company-section {
  padding: 80px 0;
  background-color: white;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-company-content h2 {
  margin-bottom: 30px;
}

.about-company-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-description h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

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

.value-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-icon {
  margin-bottom: 20px;
}

.value-card h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-light-color);
  margin-bottom: 0;
}

.team-section {
  padding: 80px 0;
  background-color: white;
}

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

.team-member {
  background-color: var(--background-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.team-member-image {
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 20px;
}

.team-member-info h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.member-position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.member-description {
  color: var(--text-light-color);
  margin-bottom: 0;
}

.why-choose-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-choose-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
  margin-bottom: 20px;
}

.why-choose-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.why-choose-card p {
  color: var(--text-light-color);
  margin-bottom: 0;
}

.facts-section {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.fact-card {
  padding: 30px;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.fact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.fact-label {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.cta-section {
  padding: 80px 0;
  background-image: linear-gradient(
      rgba(26, 41, 66, 0.9),
      rgba(26, 41, 66, 0.9)
    ),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contacts Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.contact-header {
  background-image: linear-gradient(
      rgba(26, 41, 66, 0.8),
      rgba(26, 41, 66, 0.8)
    ),
    url("../images/contact-bg.jpg");
}

.contact-info-section {
  padding: 80px 0;
  background-color: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-info-card {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.contact-info-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-info-card p {
  color: var(--text-light-color);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--secondary-color);
}

.map-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.map-container {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container iframe {
  border: none;
}

.contact-faq {
  background-color: white;
}

/* Policy Pages
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.policy-content-section {
  padding: 80px 0;
  background-color: white;
}

.policy-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}

.policy-toc {
  position: sticky;
  top: 120px;
  height: max-content;
  padding: 30px;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.policy-toc h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.policy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-toc li {
  margin-bottom: 10px;
}

.policy-toc a {
  color: var(--primary-color);
  transition: var(--transition);
}

.policy-toc a:hover {
  color: var(--secondary-color);
}

.policy-section {
  margin-bottom: 40px;
  scroll-margin-top: 120px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.policy-section h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.policy-section p,
.policy-section ul,
.policy-section ol {
  margin-bottom: 15px;
}

.policy-section a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.policy-section a:hover {
  color: var(--primary-color);
}

/* Thanks Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.thanks-section {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon {
  margin-bottom: 30px;
  display: inline-block;
}

.thanks-message {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.thanks-detail {
  color: var(--text-light-color);
  margin-bottom: 30px;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.additional-info-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step-card p {
  color: var(--text-light-color);
  margin-bottom: 0;
}

.thanks-faq {
  background-color: white;
}

.contact-info-mini-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.contact-info-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-info-mini-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.contact-info-mini-card h3 {
  margin: 15px 0;
  font-size: 1.2rem;
}

.contact-info-mini-card p {
  color: var(--text-light-color);
  margin-bottom: 0;
}

.contact-info-mini-card a {
  color: var(--secondary-color);
}

.contact-info-mini-card a:hover {
  color: var(--primary-color);
}

/* Responsive Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .policy-content {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .menu.active {
    right: 0;
  }

  .menu li {
    margin: 0 0 20px;
  }

  .menu-toggle.active .menu-icon {
    background-color: transparent;
  }

  .menu-toggle.active .menu-icon:before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-toggle.active .menu-icon:after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .service-card,
  .service-card.reverse,
  .program-content,
  .about-preview-grid,
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card.reverse .service-image,
  .program-content.reverse .program-image {
    order: 1;
  }

  .service-card.reverse .service-content,
  .program-content.reverse .program-details {
    order: 2;
  }

  .hero-buttons,
  .cta-buttons,
  .thanks-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-copyright {
    margin-bottom: 20px;
  }

  .footer-links a {
    margin: 0 10px;
  }

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

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }

  .modal-content {
    margin: 20px;
    padding: 20px;
  }
}

/* IntlTelInput Customization
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}

.iti__selected-flag {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px 0 0 4px;
}

.iti__country-list {
  background-color: white;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

/* Fancybox Customization
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.fancybox__backdrop {
  background-color: rgba(26, 41, 66, 0.9);
}

.fancybox__container {
  --fancybox-accent-color: var(--secondary-color);
}

/* Nice Select Customization
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.nice-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  height: auto;
  line-height: 1.6;
}

.nice-select:after {
  border-color: white;
}

.nice-select .list {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

.nice-select .option {
  padding: 12px 15px;
}

.nice-select .option.selected {
  background-color: var(--secondary-color);
  color: white;
}

.nice-select .option:hover {
  background-color: var(--background-color);
}
