:root {
    --primary-blue: #0E0F3B;
    --secondary-blue: #07407B;
    --accent-blue: #7FCDEE;
    --orange-accent: #F7931E;
    --white: #ffffff;
}

/* ===== BASE ===== */
html {
    direction: ltr;
    overflow-x: hidden;
    box-shadow: none !important;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #FFF;
    color: #777;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 26px;
    margin: 0;
}

a {
    text-decoration: none;
}

/* ===== HEADER ===== */
.header {
    position: relative;
    z-index: 1030;
}

.header-body {
    display: flex;
    flex-direction: column;
    background: #FFF;
    transition: min-height 0.3s ease;
    width: 100%;
    border-top: 3px solid #EDEDED;
    border-bottom: 1px solid transparent;
    z-index: 1001;
}

    .header-body.border-top-0 {
        border-top: 0 !important;
    }

/* ===== TOP BAR ===== */
.top-bar {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    min-height: 48px;
    background: white;
    color: #666;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 6px 0;
}

.top-container {
    padding-left: calc(20px + 1vw);
    padding-right: calc(20px + 1vw);
    width: 100%;
    display: flex;
    align-items: center;
}

.top-row {
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.top-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.top-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
}

.top-right {
    flex: 0 0 auto;
    margin-left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Social Icons */
.social-icons {
    display: flex !important;
    flex-direction: row !important;
    gap: calc(8px + 0.2vw);
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    margin-right: 30px !important;
}

    .social-icons li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: inline-flex !important;
    }

    .social-icons a {
        width: calc(28px + 0.4vw) !important;
        height: calc(28px + 0.4vw) !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #7FCDEE;
        background: rgba(127, 205, 238, 0.2);
        border: 2px solid #7FCDEE;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        font-size: calc(12px + 0.15vw) !important;
    }

        .social-icons a:hover {
            background: #7FCDEE;
            color: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(127, 205, 238, 0.4);
        }

/* Schedule */
.schedule {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 500;
    font-size: calc(12px + 0.15vw);
    color: #666;
}

/* Book Button */
.book-btn {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: #07407B !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    padding: calc(8px + 0.2vw) calc(16px + 0.4vw) !important;
    font-size: calc(11px + 0.12vw) !important;
}

/* View More Button */
.view-more-btn {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #07407B !important;
    border: 2px solid #07407B !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    padding: calc(6px + 0.2vw) calc(14px + 0.4vw) !important;
    font-size: calc(11px + 0.12vw) !important;
}

    .view-more-btn:hover {
        background: #07407B !important;
        color: white !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 3px 8px rgba(7, 64, 123, 0.3) !important;
    }

/* Phone Section - Top Bar Version */
.top-phone-feature {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    padding-right: 3px;
}

    .top-phone-feature:hover {
        text-decoration: none !important;
    }

        .top-phone-feature:hover .top-phone-icon {
            -webkit-animation: 1200ms ease 0s normal none 1 running shake;
            animation: 1200ms ease 0s normal none 1 running shake;
        }

.top-phone-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-width: 35px;
    width: 35px;
    height: 35px;
    border: 2px solid #e5edf4;
    border-radius: 50%;
    fill: #005395;
}

    .top-phone-icon svg {
        max-width: 12px !important;
        width: 12px !important;
        height: 12px !important;
    }

.top-phone-info {
    text-align: left;
    margin-left: 8px;
    white-space: nowrap;
}

.top-phone-number {
    color: #005395 !important;
    font-weight: 600;
    line-height: 1;
    font-size: calc(12px + 0.15vw);
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: #052d5a !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(7, 64, 123, 0.3) !important;
}

/* ===== MAIN HEADER ===== */
.main-header {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    transition: ease height 300ms;
}

.main-container {
    padding-left: calc(20px + 1vw);
    padding-right: calc(20px + 1vw);
    width: 100%;
}

.main-row {
    display: flex;
    flex-grow: 1;
    align-items: center;
    align-self: stretch;
    max-height: 100%;
    width: 100%;
    justify-content: space-between;
}

.main-left {
    display: flex;
/*    align-self: stretch;
    align-items: center;*/
    flex-grow: 1;
    flex-direction: column;
    justify-content: flex-start;
}

.main-right {
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-grow: 1;
    flex-direction: column;
    justify-content: flex-end;
}

/* Logo */
.logo {
    margin: 16px 0;
    position: relative;
    z-index: 1;
}

    .logo img {
        transition: all 0.3s ease;
        position: relative;
        top: 0;
        image-rendering: -webkit-optimize-contrast;
        transform: translateZ(0);
        max-height: calc(30px + 4vw);
        width: auto;
    }

/* Navigation */
.nav-container {
    padding: 16px 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    align-self: stretch;
}

.nav-main {
    display: flex !important;
    height: auto !important;
    align-self: stretch;
    min-height: 0;
    margin-top: 0;
}

    .nav-main nav {
        display: flex !important;
    }

        .nav-main nav > ul {
            display: flex;
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .nav-main nav > ul > li {
                height: 100%;
                align-self: stretch;
                margin-left: 2px;
                display: inline-flex;
                align-self: stretch;
            }

                .nav-main nav > ul > li > a {
                    display: inline-flex;
                    align-items: center;
                    white-space: nowrap;
                    border-radius: 4px;
                    color: #666 !important;
                    font-weight: 500 !important;
                    letter-spacing: -0.3px;
                    text-decoration: none;
                    position: relative;
                    background: transparent !important;
                    margin: 0;
                    height: 100%;
                    text-transform: none !important;
                    font-size: calc(8px + 1.2vw) !important;
                    padding: calc(2px + 0.6vw) calc(4px + 0.8vw);
                    margin-left: calc(1px + 0.3vw);
                }

                    .nav-main nav > ul > li > a:hover {
                        color: var(--primary-blue) !important;
                        background: transparent !important;
                        text-decoration: underline !important;
                    }

                    .nav-main nav > ul > li > a.active {
                        color: var(--primary-blue) !important;
                        background: transparent !important;
                        font-weight: bold !important;
                        text-decoration: none !important;
                    }

/* Override Bootstrap dropdown arrows completely */
.header .nav-main .dropdown-toggle::after {
    content: '▼' !important;
    margin-left: 8px !important;
    font-size: 10px !important;
    transition: transform 0.3s ease !important;
    border: 0 !important;
    vertical-align: middle !important;
    display: inline !important;
    width: auto !important;
    height: auto !important;
}

.nav-main nav > ul > li.dropdown:hover > a.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdowns */
.nav-main nav > ul > li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 0 !important;
    margin-top: 5px;
    display: block;
}

.nav-main nav > ul > li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-main nav > ul > li.dropdown .dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-main nav > ul > li.dropdown .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .nav-main nav > ul > li.dropdown .dropdown-menu li a {
        color: #777;
        font-size: 14px;
        font-weight: 400;
        padding: 12px 20px;
        position: relative;
        text-transform: none;
        text-decoration: none;
        letter-spacing: -0.3px;
        display: block;
        border: none;
        transition: all 0.2s ease;
    }

    .nav-main nav > ul > li.dropdown .dropdown-menu li:last-child a {
        border: none;
    }

    .nav-main nav > ul > li.dropdown .dropdown-menu li a:hover {
        background-color: #f8f9fa;
        color: var(--primary-blue);
        padding-left: 24px;
    }

/* Phone Section */
.phone-feature {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    margin-left: calc(10px + 0.5vw);
    padding-right: 3px;
}

    .phone-feature:hover {
        text-decoration: none !important;
    }

        .phone-feature:hover .phone-icon {
            -webkit-animation: 1200ms ease 0s normal none 1 running shake;
            animation: 1200ms ease 0s normal none 1 running shake;
        }

.phone-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-width: 49px;
    width: 49px;
    height: 49px;
    border: 2px solid #e5edf4;
    border-radius: 50%;
    fill: #005395;
}

    .phone-icon svg {
        max-width: 15px !important;
        width: 15px !important;
        height: 15px !important;
    }

.phone-info {
    text-align: left;
    margin-left: 10px;
    white-space: nowrap;
}

    .phone-info > *:not(:first-child) {
        margin-top: 8px;
    }

.phone-label {
    display: none;
}

.phone-number {
    color: #005395 !important;
    font-weight: 700;
    line-height: 1;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1619.98px) {
    .phone-number {
        font-size: 20px;
    }
}

@media (max-width: 1024.98px) {
    .phone-icon {
        min-width: 39px;
        width: 39px;
        height: 39px;
    }

        .phone-icon svg {
            max-width: 12px !important;
            width: 12px !important;
            height: 12px !important;
        }

    .phone-info {
        margin-left: 8px;
    }

    .phone-number {
        font-size: 16px;
        padding-right: 0;
    }

    .phone-info {
        white-space: nowrap;
    }

        .phone-info > *:not(:first-child) {
            margin-top: 5px;
        }
}

/* Shake Animation */
@-webkit-keyframes shake {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

    10% {
        -webkit-transform: rotateZ(-30deg);
        transform: rotateZ(-30deg);
    }

    20% {
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }

    30% {
        -webkit-transform: rotateZ(-10deg);
        transform: rotateZ(-10deg);
    }

    40% {
        -webkit-transform: rotateZ(7.5deg);
        transform: rotateZ(7.5deg);
        fill: #ff8400;
        border-color: #ff8400;
        box-shadow: 0px 2px 6px rgba(255, 132, 0, 0.35);
    }

    50% {
        -webkit-transform: rotateZ(-6deg);
        transform: rotateZ(-6deg);
        fill: #ff8400;
        border-color: #ff8400;
        box-shadow: 0px 2px 6px rgba(255, 132, 0, 0.35);
    }

    60% {
        -webkit-transform: rotateZ(5deg);
        transform: rotateZ(5deg);
    }

    70% {
        -webkit-transform: rotateZ(-4.28571deg);
        transform: rotateZ(-4.28571deg);
    }

    80% {
        -webkit-transform: rotateZ(3.75deg);
        transform: rotateZ(3.75deg);
    }

    90% {
        -webkit-transform: rotateZ(-3.33333deg);
        transform: rotateZ(-3.33333deg);
    }

    100% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}

@keyframes shake {
    0% {
        transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        fill: #ff8400;
        border-color: #ff8400;
        box-shadow: 0px 2px 6px rgba(255, 132, 0, 0.35);
    }

    50% {
        transform: rotateZ(-6deg);
        fill: #ff8400;
        border-color: #ff8400;
        box-shadow: 0px 2px 6px rgba(255, 132, 0, 0.35);
    }

    60% {
        transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

.phone-number:hover {
    color: #5bb5d9 !important;
}

/* Phone Section - Top Bar Version */
.top-phone-feature {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    padding-right: 3px;
}

    .top-phone-feature:hover {
        text-decoration: none !important;
    }

        .top-phone-feature:hover .top-phone-icon {
            -webkit-animation: 1200ms ease 0s normal none 1 running shake;
            animation: 1200ms ease 0s normal none 1 running shake;
        }

.top-phone-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-width: 35px;
    width: 35px;
    height: 35px;
    border: 2px solid #e5edf4;
    border-radius: 50%;
    fill: #005395;
}

    .top-phone-icon svg {
        max-width: 12px !important;
        width: 12px !important;
        height: 12px !important;
    }

.top-phone-info {
    text-align: left;
    margin-left: 8px;
    white-space: nowrap;
}

.top-phone-number {
    color: #005395 !important;
    font-weight: 600;
    line-height: 1;
    font-size: calc(12px + 0.15vw);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    z-index: 10000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.mobile-menu-nav {
    padding: 20px 0;
}

    .mobile-menu-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu-nav > ul > li {
        margin: 0;
    }

        .mobile-menu-nav > ul > li > a {
            display: block;
            padding: 15px 20px;
            color: #666;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.3s ease;
        }

            .mobile-menu-nav > ul > li > a:hover,
            .mobile-menu-nav > ul > li > a.active {
                color: var(--primary-blue);
                background: #f8f9fa;
            }

        .mobile-menu-nav > ul > li.dropdown > a {
            position: relative;
        }

            .mobile-menu-nav > ul > li.dropdown > a::after {
                content: '▼';
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                font-size: 12px;
                transition: transform 0.3s ease;
            }

        .mobile-menu-nav > ul > li.dropdown.open > a::after {
            transform: translateY(-50%) rotate(180deg);
        }

    .mobile-menu-nav .dropdown-menu {
        display: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

        .mobile-menu-nav .dropdown-menu.show {
            display: block;
        }

        .mobile-menu-nav .dropdown-menu li a {
            padding: 12px 40px;
            font-size: 14px;
            color: #777;
            border: none;
        }

            .mobile-menu-nav .dropdown-menu li a:hover {
                background: #e9ecef;
            }

/* Mobile Contact Info */
.mobile-contact-info {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-phone-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding-right: 3px;
}

    .mobile-phone-info:hover {
        text-decoration: none !important;
    }

        .mobile-phone-info:hover .mobile-phone-icon {
            -webkit-animation: 1200ms ease 0s normal none 1 running shake;
            animation: 1200ms ease 0s normal none 1 running shake;
        }

.mobile-phone-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border: 2px solid #e5edf4;
    border-radius: 50%;
    fill: #005395;
}

    .mobile-phone-icon svg {
        max-width: 12px !important;
        width: 12px !important;
        height: 12px !important;
    }

.mobile-phone-details {
    margin-left: 12px;
    white-space: nowrap;
}

    .mobile-phone-details > *:not(:first-child) {
        margin-top: 5px;
    }

.mobile-phone-number {
    color: #005395 !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    line-height: 1;
}

.mobile-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #07407B;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
}

.mobile-social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

    .mobile-social-icons a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #7FCDEE;
        background: rgba(127, 205, 238, 0.2);
        border: 2px solid #7FCDEE;
        text-decoration: none;
        font-size: 16px;
    }

/* Override Bootstrap dropdown borders */
.dropdown-menu {
    border: 0 !important;
}

/* ===== STICKY HEADER ===== */
html.sticky-header-active .header .header-body {
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom-color: rgba(234, 234, 234, 0.5);
    box-shadow: 0 0 3px rgba(234, 234, 234, 0.5);
}

/* Hide top bar when sticky */
html.sticky-header-active .header .top-bar {
    display: none;
}

html.sticky-header-active .header .logo img[data-sticky-height] {
    height: calc(45px + 1.5vw) !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-main {
        display: none !important;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }

    /* Mobile menu elements are always present */
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }

    /* Adjust top bar for mobile - Make it smaller and compact */
    .top-bar {
        min-height: 35px;
        padding: 4px 0;
    }

    .top-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Make top bar elements smaller for mobile */
    .top-left {
        margin-right: 20px;
    }

    .top-center {
        margin: 0 20px;
    }

    .top-right {
        margin-left: 20px;
        gap: 10px;
    }

    /* Adjust social icons for mobile */
    .social-icons {
        gap: 6px;
        margin-right: 15px !important;
    }

        .social-icons a {
            width: 24px !important;
            height: 24px !important;
            font-size: 10px !important;
        }

    /* Adjust schedule text */
    .schedule {
        font-size: 10px;
    }

    /* Make buttons smaller for mobile */
    .book-btn {
        padding: 6px 12px !important;
        font-size: 10px !important;
    }

    .view-more-btn {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }

    /* Make top phone feature smaller - HIDE IN MOBILE */
    .top-phone-feature {
        display: none;
    }

    /* Adjust main header */
    .main-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-row {
        justify-content: space-between;
    }

    /* Adjust logo */
    .logo {
        margin: 12px 0;
    }

        .logo img {
            max-height: 40px;
        }

    /* Adjust nav container */
    .nav-container {
        padding: 12px 0;
        min-height: 50px;
        justify-content: flex-end;
    }

    /* Sticky header adjustments for mobile */
    html.sticky-header-active .header .logo img[data-sticky-height] {
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .schedule {
        display: none; /* Hide schedule on very small screens */
    }

    .social-icons {
        gap: 6px;
    }

        .social-icons a {
            width: 24px !important;
            height: 24px !important;
            font-size: 10px !important;
        }

    .book-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }

    .phone-label {
        font-size: 9px;
    }

    .phone-number {
        font-size: 12px;
    }

    .logo img {
        max-height: 35px;
    }

    html.sticky-header-active .header .logo img[data-sticky-height] {
        height: 30px !important;
    }
}

/* ===== CONTENT STYLES ===== */
.content {
    margin-top: 150px;
    padding: 40px 20px;
}

.hero {
    background: linear-gradient(135deg, #0E0F3B, #07407B);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

.btn-cta {
    background: #7FCDEE;
    color: #0E0F3B;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.section {
    margin: 40px 0;
}

    .section h2 {
        color: #0E0F3B;
        text-align: center;
        margin-bottom: 30px;
        font-size: 2rem;
    }

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

    .service h4 {
        color: #0E0F3B;
        margin-bottom: 15px;
    }

.footer {
    background: #0E0F3B;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .content {
        margin-top: 120px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}
