.page-heading {
    background-image: url('/assets/images/info-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0 60px 0;
    margin-bottom: 0;
    min-height: 310px;
}

.page-heading-content {
    text-align: left;
    max-width: 600px;
}

.page-heading-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-heading-subtitle {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    line-height: 21px;
    margin: 0;
}

.info-page {
    position: relative;
    z-index: 10;
}

.info-sidebar {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: -140px;
    position: relative;
    z-index: 20;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.sidebar-toggle {
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
}

.sidebar-icon-close {
    display: none;
}

.info-sidebar.active .sidebar-icon-open {
    display: none;
}

.info-sidebar.active .sidebar-icon-close {
    display: inline;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 17px;
    gap: 6px;
}

.sidebar-link {
    display: block;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    border: 2px solid var(--primary);
    background-color: rgba(241, 99, 100, 0.08);
    color: var(--primary);
}

.sidebar-link.active {
    border: 2px solid var(--primary);
    background-color: rgba(241, 99, 100, 0.08);
    color: var(--primary);
}

.info-content {
    padding: 0;
}

.info-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.office-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.office-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.office-card-full {
    grid-column: 1 / -1;
}

.office-card-header {
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}

.office-card-map {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: var(--bg-light);
}

.office-card-full .office-card-map {
    height: 220px;
}

.office-card-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.office-card-body {
    padding: 16px;
}

.office-location {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.office-address {
    font-size: 13px;
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.office-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.office-phone:hover {
    color: var(--primary-hover);
}

.office-phone i {
    font-size: 12px;
}

@media (max-width: 991.98px) {
    .page-heading {
        padding: 32px 0 40px 0;
    }

    .page-heading-title {
        font-size: 24px;
    }

    .page-heading-subtitle {
        font-size: 13px;
    }

    .info-sidebar {
        margin-top: 0;
    }

    .sidebar-nav {
        display: none;
    }

    .info-sidebar.active .sidebar-nav {
        display: flex;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .info-content {
        padding: 16px;
    }

    .info-title {
        font-size: 20px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .office-card-full .office-card-map {
        height: 180px;
    }
}

.info-text {
    line-height: 1.7;
}

.info-text h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.info-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.info-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 16px;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.info-text ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.info-text ul li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.contact-section {
    margin-bottom: 24px;
}

.contact-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.contact-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.contact-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(241, 99, 100, 0.04);
}

.email-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.email-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.email-item:hover {
    border-color: var(--primary);
    background-color: rgba(241, 99, 100, 0.04);
}

.email-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.email-address {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.legal-notice {
    border-left: 3px solid var(--primary);
}

@media (min-width: 992px) {
    .sidebar-header {
        display: none;
    }

    .sidebar-nav {
        display: flex !important;
    }
}

@media (max-width: 767.98px) {
    .email-grid {
        grid-template-columns: 1fr;
    }

    .contact-items {
        flex-direction: column;
    }
}
