.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1rem 7.5rem; */
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.logo img {
    max-width: 120px;
    height: auto;
    aspect-ratio: 1.97;
    object-fit: cover;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.3125rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 1.5625rem;
    height: 0.1875rem;
    background-color: #1d1d1f;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3f8ccb;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #3f8ccb;
    color: #ffffff;
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: 2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #2a6ca6;
    transform: translateY(-2px);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.375rem);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(0.4375rem, -0.5rem);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1.125rem;
    }

    .logo img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo img {
        max-width: 80px;
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 7.5rem;
    background-color: #f5f5f7;
    width: 100%;
}

.container-last {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.footnotes {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #1d1d1f29;
    width: 100%;
}

.linkedin-logo {
    width: 166px;
    height: 110px;
    object-fit: contain;
}

.disclaimer-text {
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #0000008f;
    text-align: center;
    line-height: 1.5rem;
    max-width: 860px;
    margin: 0;
}

.emergency-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: left;
    width: 100%;
}

.emergency-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 1rem;
    background-color: #1d1d1f;
    border-radius: 2rem;
    text-decoration: none;
    color: #ffffff;
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.75rem;
    transition: background-color 0.3s ease;
}

.emergency-link.whatsapp {
    background-color: #8dc73f;
}

.emergency-link:hover {
    background-color: #2a6ca6;
}

.emergency-link.whatsapp:hover {
    background-color: #7ab336;
}

.emergency-link img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    width: 100%;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

.nav-title {
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #1d1d1fe0;
    line-height: 1rem;
    margin: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.0625rem 0;
}

.nav-list li {
    list-style: none;
}

.nav-list a {
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #1d1d1fb8;
    line-height: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #3f8ccb;
}

.copyright {
    display: flex;
    justify-content: center;
    width: 100%;
}

.copyright p {
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #0000008f;
    line-height: 1rem;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 2rem;
    }

    .disclaimer-text {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .emergency-link {
        font-size: 0.875rem;
        padding: 0.25rem 0.75rem;
    }

    .emergency-link img {
        width: 1.25rem;
        height: 1.25rem;
    }

    .nav-column {
        min-width: 120px;
    }

    .nav-title {
        font-size: 0.7rem;
    }

    .nav-list a {
        font-size: 0.8rem;
    }

    .copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 1rem;
    }

    .linkedin-logo {
        width: 120px;
        height: 80px;
    }

    .disclaimer-text {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .emergency-links {
        /* flex-direction: column; */
        align-items: left;
    }

    .emergency-link {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .emergency-link img {
        width: 1rem;
        height: 1rem;
    }

    .nav-column {
        min-width: 100px;
    }

    .nav-title {
        font-size: 0.65rem;
    }

    .nav-list a {
        font-size: 0.75rem;
    }

    .copyright p {
        font-size: 0.75rem;
    }
}