:root {
    --primary: #244573;
    --secondary: #40A3FE;
    --bg-grey: #f0f4f9;
    --text-main: #1e293b;
    --text-light: #64748b;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-grey);
    margin: 0;
    padding: 60px 0;
    color: var(--text-main);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-wrapper {
    width: 960px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}


.site-header {
    display: flex;
    background: #fff;
    height: 140px;
    position: relative;
    border-bottom: 2px solid var(--primary);
}

.header-left {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.header-right {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
}

.header-visual-top {
    height: 90px;
    width: 100%;
    overflow: hidden;
}

.header-visual-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.nav-bottom {
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    width: 100%;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.nav-list a:hover {
    opacity: 0.7;
    color: #fff;
}


.location-bar {
    background-color: #e3e8ef;
    padding: 12px 50px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #e2e8f0;
}

.location-bar span {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-bar span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}


.main-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
}


.sidebar {
    padding: 40px 25px;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

.sidebar-section {
    margin-bottom: 50px;
}

.sidebar-title {
    background-color: transparent;
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 0;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.sidebar-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #cbd5e1;
    margin-left: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    font-weight: 700;
}

.sidebar-list li::before {
    content: "→";
    color: var(--secondary);
    font-size: 14px;
    margin-right: 8px;
    font-weight: bold;
}

.sidebar-map {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    height: 150px;
}


.content {
    padding: 50px;
}

.hero-section {
    position: relative;
    padding-left: 40px;
    margin-bottom: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}

.hero-h1 {
    font-size: 31px;
    color: var(--primary);
    text-align: left;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-feature {
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    margin-bottom: 40px;
}

.feature-tag {
    display: inline-block;
    background: var(--bg-grey);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.feature-text {
    font-size: 16px;
    color: var(--primary);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.hero-h3 {
    font-size: 16px;
    color: var(--text-light);
    text-align: left;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.image-grid img,
.featured-image img {
    width: 100%;
    aspect-ratio: 1/1;

    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.image-grid img:hover,
.featured-image img:hover {
    transform: scale(1.02);
}


.footer {
    background-color: #f8fafc;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    font-size: 12px;
    color: var(--text-light);
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #164677;
    text-decoration: none;
    margin: 0 10px;
}

.cta-button {
    display: block;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    margin-top: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(22, 70, 119, 0.2);
}

.cta-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(22, 70, 119, 0.3);
}

/* Responsive Utilities */
.res-grid {
    display: grid;
    gap: 20px;
}

.res-flex {
    display: flex;
    gap: 20px;
}

/* Tablets (Portrait) */
@media (max-width: 992px) {
    .page-wrapper {
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        border-radius: 0;
    }

    .main-layout {
        grid-template-columns: 200px 1fr;
    }

    .content {
        padding: 40px 30px;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .page-wrapper {
        box-shadow: none;
    }

    .site-header {
        flex-direction: column;
        height: auto;
    }

    .header-left {
        flex: 1 0 auto;
        padding: 20px 0;
    }

    .header-left img {
        height: 80px;
    }

    .header-right {
        flex: 1 0 auto;
    }

    .header-visual-top {
        display: none;
    }

    .nav-bottom {
        height: auto;
        padding: 15px 20px;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .location-bar {
        padding: 12px 20px;
        justify-content: center;
    }

    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
        border-right: none;
        border-top: 1px solid #e2e8f0;
        padding: 40px 20px;
    }

    .content {
        order: 1;
        padding: 40px 20px;
    }

    .hero-h1 {
        font-size: 26px;
    }

    .hero-section {
        padding-left: 25px;
    }


    /* Stack grid columns on mobile */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .flex-stack {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* Mobile Navbar Styles */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .header-left {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .nav-bottom {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        flex-direction: column;
        padding: 80px 40px !important;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: flex !important;
        align-items: flex-start !important;
    }

    .nav-bottom.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .nav-list a {
        color: var(--primary) !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        display: block;
        width: 100%;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}