:root,
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Montserrat, "Montserrat Fallback", Arial, sans-serif;
}

.hero-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bg-video {
    position: absolute;
    /* make video stay inside hero-container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fill the section without distortion */
    z-index: -1;
    /* behind the content */
}

#formMessage {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Success styling */
#formMessage.success {
    background-color: #28a745;
}

/* Error styling */
#formMessage.error {
    background-color: #dc3545;
}

/* Visible state with pop effect */
#formMessage.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.small-navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 400px;
    background-color: white;
    border-right: 1px solid black;
    z-index: 20;

    transform: translateX(-100%);
    /* start off-screen left */
    transition: transform 0.3s ease;
    /* smooth slide animation */
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.small-navbar i {
    font-size: 24px;
    cursor: pointer;
    color: black;
    align-self: flex-end;
    padding-bottom: 20px;
}

/* Show navbar when active */
.small-navbar.active {
    transform: translateX(0);
    /* slide into view */
}

/* Only enable small-navbar behavior for screens ≤1275px */
@media (min-width: 1276px) {
    .small-navbar {
        display: none;
        /* hide completely on larger screens */
    }
}

.main-nav {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
}

.main-nav:hover {
    cursor: pointer;
    color: #004988;
}

.sub-nav {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sub-nav a {
    color: #00000080;
    /* 80 = ~50% opacity */
}

.sub-nav a:hover {
    cursor: pointer;
    color: #004988;
}

.navbar-container {
    position: fixed;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

@media (max-width: 1275px) {
    .navbar-container {
        top: 0;
    }
}

.main-navbar-container {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    border-radius: 40px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* black shadow */
}

/* For medium screens and smaller */
@media (max-width: 1275px) {
    .main-navbar-container {
        width: 100%;
        /* full width */
        padding: 20px 20px;
        /* adjust padding if needed */
        border-radius: 0;
        /* optional: remove border-radius for smaller screens */
    }
}

.main-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Default styling */
.main-navbar h1 {
    color: black;
    font-size: 36px;
    margin: 0;
    transform: translateX(-10px);
}

/* Hide on medium/small screens */
@media (max-width: 555px) {
    .main-navbar h1 {
        display: none;
    }
}

.sub-menu-container1 {
    display: none;
    text-align: center;
    /* hidden initially */
    position: absolute;
    left: -100px;
    /* align with parent link */
    top: 60px;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    border-top: 4px solid #004988;
    width: max-content;
    /* width adapts to longest content */
    min-width: 300px;
    /* optional: ensure a minimum width */
    box-sizing: border-box;
    /* include padding in width */
}

.sub-menu-container1 p {
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.sub-menu-container1 p:hover {
    color: #004988;
    /* color on hover */
}

/* Show submenu when hovering the parent container */
.services-link:hover .sub-menu-container1 {
    display: flex;
    /* keep visible while hovering parent or submenu */
}

.sub-menu-container2 {
    display: none;
    text-align: center;
    /* hidden initially */
    position: absolute;
    left: -100px;
    /* align with parent link */
    top: 60px;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    border-top: 4px solid #004988;
    width: max-content;
    /* width adapts to longest content */
    min-width: 300px;
    /* optional: ensure a minimum width */
    box-sizing: border-box;
    /* include padding in width */
}

.sub-menu-container2 p {
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.sub-menu-container2 p:hover {
    color: #004988;
    /* color on hover */
}


/* Show submenu when hovering the parent container */
.services-link:hover .sub-menu-container2 {
    display: flex;
    /* keep visible while hovering parent or submenu */
}

.nav-links {
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: black;
    gap: 60px;
    margin-left: 60px;
}

@media (max-width: 1275px) {
    .nav-links {
        display: none;
        width: 100%;
        /* full width */
        padding: 0 20px;
        /* adjust padding if needed */
        border-radius: 0;
        /* optional: remove border-radius for smaller screens */
    }
}

.services-link {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* fill parent height */
}

.services-link a {
    padding: 0px 20px;
    /* fill parent height */
    display: inline-block;
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.services-link a:hover {
    color: #004988;
    /* color on hover */
}

.right-navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.language-select {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: black;
    gap: 10px;
    cursor: pointer;
}

.language-options {
    display: none;
    text-align: center;
    /* hidden initially */
    position: absolute;
    left: -37px;
    /* align with parent link */
    top: 45px;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    width: max-content;
    /* width adapts to longest content */
    min-width: 100px;
    /* optional: ensure a minimum width */
    box-sizing: border-box;
    /* include padding in width */
}

.language-options p {
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.language-options p:hover {
    color: #004988;
    /* color on hover */
}

/* Show submenu when hovering the parent container */
.language-select:hover .language-options {
    display: flex;
    /* keep visible while hovering parent or submenu */
}

.hamburger-menu {
    display: none;
}

/* Show hamburger on medium/small screens */
@media (max-width: 1275px) {
    .hamburger-menu {
        display: block;
        /* show hamburger */
        font-size: 28px;
        cursor: pointer;
        color: black;
    }
}

.hero-text {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-text h1 {
    font-size: 48px;
}

@media (max-width: 555px) {
    .hero-text {
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 36px;
        padding: 10px;
    }

    .hero-text div p {
        line-height: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-transparent {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    /* make text bold */
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-transparent:hover {
    background-color: white;
    color: #38302b;
}

.btn-solid {
    background-color: #236476;
    color: white;
    border: 2px solid #236476;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    /* make text bold */
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.btn-solid:hover {
    background-color: #00576f;
}

.live-interpreting-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.live-interpreting-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.live-interpreting-image-section {
    flex: 1;
    min-height: 500px;
}

.live-interpreting-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.live-interpreting-text-section {
    flex: 1;
    padding: 60px 40px;
}

.live-interpreting-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.live-interpreting-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .live-interpreting-container {
        padding: 40px 15px;
    }

    .live-interpreting-content {
        flex-direction: column;
        gap: 0;
    }

    .live-interpreting-image-section {
        min-height: 300px;
    }

    .live-interpreting-text-section {
        padding: 40px 30px;
    }

    .live-interpreting-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .live-interpreting-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .live-interpreting-text-section {
        padding: 30px 20px;
    }

    .live-interpreting-title {
        font-size: 1.75rem;
    }
}

.professional-interpreters-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f7c 100%);
    color: white;
    padding: 80px 20px;
    min-height: 100vh;
}

.professional-interpreters-container {
    max-width: 1200px;
    margin: 0 auto;
}

.professional-interpreters-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.professional-interpreters-content {
    flex: 1;
}

.professional-interpreters-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.professional-interpreters-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.professional-interpreters-image {
    flex: 1;
    max-width: 500px;
}

.professional-interpreters-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.professional-interpreters-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 800px;
}

.professional-interpreters-category {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.professional-interpreters-category:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.professional-interpreters-category.active {
    background: white;
    color: #1e3a5f;
    border-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.professional-interpreters-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.professional-interpreters-dropdown-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.professional-interpreters-category.active .professional-interpreters-dropdown-arrow {
    transform: rotate(180deg);
}

.professional-interpreters-category-content {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.professional-interpreters-category.active .professional-interpreters-category-content {
    opacity: 1;
    max-height: 200px;
}

@media (max-width: 768px) {
    .professional-interpreters-hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .professional-interpreters-title {
        font-size: 2.5rem;
    }

    .professional-interpreters-categories {
        grid-template-columns: 1fr;
    }
}

.principles-container {
    background-color: #f9fafb;
}

.principles-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    grid-template-rows: repeat(2, auto);
    /* 2 rows */
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.principle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.principle-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: #3b82f6;
}

.principle-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.principle-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Icons using CSS */
.icon-people::before {
    content: "👥";
    font-size: 2rem;
}

.icon-star::before {
    content: "⭐";
    font-size: 2rem;
}

.icon-lightbulb::before {
    content: "💡";
    font-size: 2rem;
}

.icon-accessibility::before {
    content: "♿";
    font-size: 2rem;
}

.icon-handshake::before {
    content: "🤝";
    font-size: 2rem;
}

.icon-shield::before {
    content: "🛡️";
    font-size: 2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .principle-card {
        padding: 30px 20px;
    }
}

.blog-cards-container {
  max-width: 800px; /* ensures 2 cards fit side by side */
  margin: 40px auto;
}

/* Grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* exactly 2 columns */
  gap: 30px;
  width: 100%;
  max-width: 800px; /* optional, ensures cards fit nicely */
  margin: 0 auto;
  justify-content: center;
  justify-items: stretch;
}

/* Card */
.blog-card {
    margin: 0px auto;
    width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* stretches to fill grid cell */
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Card Image */
.blog-card-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Card Content */
.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.blog-card-title.orange-title {
  color: #ff6b35;
}

.blog-card-description {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  flex: 1;
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 768px) {
  .blog-card{
      width:95%;
  }
  .blog-cards-grid {
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 20px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 18px;
  }
}

.translation-process-container {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f7c 100%);
    min-height: 100vh;
    padding: 60px 20px;
}

.translation-process-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 80px;
    line-height: 1.2;
}

.translation-process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.translation-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.translation-process-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.translation-process-step:nth-child(odd) {
    justify-content: flex-start;
}

.translation-process-step:nth-child(even) {
    justify-content: flex-end;
}

.translation-process-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    width: 420px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.translation-process-step:nth-child(odd) .translation-process-card {
    margin-right: 60px;
}

.translation-process-step:nth-child(even) .translation-process-card {
    margin-left: 60px;
}

.translation-process-card-title {
    color: #1e3a5f;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.translation-process-card-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.translation-process-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #1e3a5f;
    border-radius: 50%;
    border: 4px solid white;
    z-index: 2;
}

@media (max-width: 768px) {
    .translation-process-title {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .translation-process-timeline::before {
        left: 30px;
    }

    .translation-process-step {
        justify-content: flex-start !important;
        margin-bottom: 40px;
    }

    .translation-process-card {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .translation-process-dot {
        left: 30px;
    }
}

@media (max-width: 480px) {
    .translation-process-container {
        padding: 40px 15px;
    }

    .translation-process-title {
        font-size: 1.75rem;
    }

    .translation-process-card {
        width: calc(100% - 60px);
        margin-left: 45px !important;
        padding: 20px;
    }

    .translation-process-timeline::before {
        left: 20px;
    }

    .translation-process-dot {
        left: 20px;
        width: 12px;
        height: 12px;
    }
}

.content-conversion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-conversion-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    line-height: 1.2;
}

.content-conversion-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.content-conversion-service {
    text-align: center;
    padding: 20px;
}

.content-conversion-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    color: #666;
}

.content-conversion-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-conversion-service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.content-conversion-explanation {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content-conversion-container {
        padding: 40px 15px;
    }

    .content-conversion-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .content-conversion-services {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .content-conversion-icon {
        font-size: 3rem;
    }

    .content-conversion-explanation {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-conversion-title {
        font-size: 1.75rem;
    }

    .content-conversion-service-title {
        font-size: 1.1rem;
    }
}

.eight-section {
    padding: 60px 0px;
    width: 100%;
    background-color: #023a5a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    align-items: stretch;
    /* 🔥 ensures equal height */
}

.small-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
}

.small-div-text {
    max-width: 500px;
    text-align: left;
}

@media (max-width: 1275px) {
    .small-div {
        flex-direction: column;
    }

    .small-div-text {
        text-align: center;
    }
}

.search-container {
    /* gray-200 */
    padding: 20px;
    border-radius: 12px;
}

.search-inner {
    display: flex;
    align-items: center;
}

.search-icon-wrapper {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-right: 1px solid #e5e7eb;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 10px;
    position: relative;
}

.search-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: #6b7280;
    /* gray-500 */
    pointer-events: none;
}

.search-input {
    flex: 1;
    height: 50px;
    max-width: 500px;
    padding-left: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: white;
}

.search-button {
    background-color: #236476;
    /* blue-500 */
    height: 50px;
    color: white;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #00576f;
    /* blue-800 */
}

.footer {
    background-color: white;
    color: black;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 3 equal columns */
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 90px;
    height: 3px;
    background-color: #00576f;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-section {
    text-align: center;
}

.contact-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: black;
}

.schedule-btn {
    background-color: #236476;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.schedule-btn:hover {
    background-color: #00576f;
}

.newsletter-text {
    font-size: 14px;
    color: black;
    margin-bottom: 15px;
}

.newsletter-btn {
    background: transparent;
    color: black;
    border: 2px solid #666;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    border: 2px solid #666;
    background-color: rgba(255, 255, 255, 0.1);
}

.certification {
    text-align: center;
}

.cert-logo {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    font-weight: bold;
    color: #3d2f26;
}

.cert-text {
    font-size: 14px;
    color: black;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon.facebook {
    background-color: #023a5a;
}

.social-icon.twitter {
    background-color: #7DAD3F;
}

.social-icon.linkedin {
    background-color: #236476;
}

.social-icon.website {
    background-color: #D9D9D9;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
    color: black;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        gap: 20px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}