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

:root {
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --secondary-color: #14b8a6;
    --dark-bg: #1e293b;
    --darker-bg: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
}

/* Header */
header {
    background: white;
    color: #172133;
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: var(--primary-color);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #172133;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

/* Dropdown base */
.nav-item {
    position: relative;
}

/*.dropdown-menu {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left:  -290px;*/
/*    width: 600px;*/
/*    background: #fff;*/
/*    padding: 2rem;*/
/*    display: none;*/
/*    box-shadow: 0 4px 20px rgba(0,0,0,0.1);*/
/*    border-radius: 8px;*/
/*    z-index: 999;*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*    gap: 2rem;*/
/*}*/
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -290px;
    width: 600px;
    background: #fff;
    padding: 2rem;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 999;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dropdown-menu h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dropdown-menu p {
    margin-bottom: 0.75rem;
}

.dropdown-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
}


/* Show on hover (desktop) */
.nav-item:hover .dropdown-menu {
    display: grid;
}

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    header,
    .nav-container,
    .top-bar .container,
    header .container {
        padding: 0;
    }
}

/* Mobile Menu */
/*@media (max-width: 768px) {*/
/*    nav ul {*/
/*        position: fixed;*/
/*        top: 0;*/
/*        right: -250px;*/
/*        width: 250px;*/
/*        height: 100%;*/
/*        background: white;*/
/*        flex-direction: column;*/
/*        padding-top: 4rem;*/
/*        gap: 1.5rem;*/
/*        transition: right 0.3s ease-in-out;*/
/*        box-shadow: -4px 0 15px rgba(0,0,0,0.1);*/
/*        z-index: 9999;*/
/*    }*/

/*    nav ul.active {*/
/*        right: 0;*/
/*    }*/

/*    .menu-toggle {*/
/*        display: block;*/
/*        color: #172133;*/
/*    }*/
/*}*/
/* Mobile Toggle Button */
/*.mobile-toggle {*/
/*    display: none;*/
/*    font-size: 2rem;*/
/*    cursor: pointer;*/
/*    color: #172133;*/
/*}*/

/* Mobile Drawer Menu */
/*.mobile-menu {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    right: -260px;*/
/*    width: 260px;*/
/*    height: 100vh;*/
/*    background: white;*/
/*    box-shadow: -3px 0 12px rgba(0,0,0,0.15);*/
/*    padding: 2rem;*/
/*    transition: 0.4s;*/
/*    z-index: 2000;*/
/*}*/

/*.mobile-menu ul {*/
/*    list-style: none;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 1.5rem;*/
/*}*/

/*.mobile-menu a {*/
/*    font-size: 1.2rem;*/
/*    color: #172133;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*}*/

/* Show only on mobile */
/*@media (max-width: 768px) {*/
/*    nav { display: none; }*/
/*    .mobile-toggle { display: block; }*/
/*}*/
/*.mobile-dropdown {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    padding-left: 1rem;*/
/*}*/

/*.mobile-dropdown li a {*/
/*    font-size: 1rem;*/
/*    font-weight: 500;*/
/*}*/
/* Mobile Menu */
@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background: white;
        flex-direction: column;
        padding-top: 4rem;
        gap: 1.5rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    nav ul.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        color: #172133;
    }
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #172133;
    background: none;
    border: none;
    padding: 0.5rem;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -3px 0 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    transition: right 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 480px) {
    .mobile-menu {
        max-width: 100%;
        width: 85%;
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: transform 0.2s;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-menu>ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.mobile-menu>ul>li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu>ul>li>a {
    display: block;
    font-size: 1.1rem;
    color: #172133;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.mobile-menu>ul>li>a:hover,
.mobile-menu>ul>li>a:active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.mobile-dropdown {
    display: none;
    flex-direction: column;
    background: var(--light-bg);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-dropdown.active {
    display: flex;
    max-height: 2000px;
    padding: 1rem 0;
}

.mobile-dropdown-section {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

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

.mobile-dropdown-section h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown-section li {
    margin: 0;
    padding: 0;
}

.mobile-dropdown-section a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.mobile-dropdown-section a:hover {
    background: white;
    color: var(--primary-color);
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle::after {
    content: '▾';
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(180deg);
}

/* Show only on mobile */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu {
        right: -100%;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }

    .mobile-toggle {
        display: none;
    }
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.logo img {
    height: 81px !important;
    width: 138px !important;
}


/* Footer */
footer {
    background: var(--darker-bg);
    color: var(--text-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}