@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #001f3f; /* Deep blue typical for law sites */
    --text-gray: #000;
    --border-light: #e0e0e0;
}

.service-page-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Open Sans',sans-serif;
    gap: 40px;
}

.main-content {
    flex: 3;
}

.sidebar {
    flex: 1;
    border-left: 1px solid var(--border-light);
    padding-left: 20px;
    height: fit-content;
}

.service-title {
    font-family: serif;
    font-weight: 700;
    /*color: #000;*/
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.text-block {
    flex: 1.2;
    line-height: 1.6;
    color: var(--text-gray);
}

.image-block {
    flex: 1;
}

    .image-block img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

.help-section h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #000;
}

.section-divider {
    border: 0;
    border-top: 1px solid var(--border-light);
    margin: 50px 0;
}

/* Sidebar Styling */
.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.quick-links-list {
    list-style: none;
    padding: 0;
}

    .quick-links-list li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .quick-links-list a {
        text-decoration: none;
        color: #000;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

        .quick-links-list a:hover {
            color: var(--primary-blue);
            font-weight: bold;
        }

.icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive Design for Tablets/Phones */
@media (max-width: 900px) {
    .service-page-container {
        flex-direction: column;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-top: 20px;
        padding-left: 0;
    }

    .help-section h2 {
        white-space: nowrap;
        font-size: 1.5rem;
    }

    .mobiletopmargin {
        padding-top: 20px;
    }
}
