/* ==========================================================================
   Legal Pages (Privacy Policy, Terms of Use) & Contact Page Styles
   ========================================================================== */

.legal-page {
    background-color: #ffffff;
    padding-top: 30px;
    padding-bottom: 90px;
    color: #181514;
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Breadcrumbs */
.legal-breadcrumb {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-breadcrumb a {
    color: #52525b;
    text-decoration: none;
}

.legal-breadcrumb a:hover {
    color: #181514;
    text-decoration: underline;
}

.legal-breadcrumb .sep {
    color: #a1a1aa;
}

.legal-breadcrumb .current {
    color: #181514;
    font-weight: 500;
}

/* Legal Header */
.legal-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0eeeb;
}

.legal-title {
    font-size: 38px;
    font-weight: 700;
    color: #181514;
    margin: 0 0 10px 0;
}

.legal-gold-line {
    width: 48px;
    height: 3px;
    background-color: #c59d5f;
    margin-bottom: 16px;
}

.legal-meta {
    font-size: 14px;
    color: #71717a;
}

/* Legal Content Body */
.legal-content-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.legal-section-block {
    margin-bottom: 36px;
}

.legal-section-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: #181514;
    margin: 0 0 14px 0;
    line-height: 1.35;
}

.legal-section-block p {
    font-size: 15px;
    color: #4b4847;
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-section-block ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 14px;
}

.legal-section-block li {
    font-size: 15px;
    color: #4b4847;
    line-height: 1.65;
    margin-bottom: 8px;
}

/* Contact Us Page Layout */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 20px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-card-box {
    background: #fcfbf9;
    border: 1px solid #eeeae4;
    border-radius: 8px;
    padding: 36px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    font-size: 20px;
    color: #246261;
    margin-top: 2px;
}

.contact-item-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #181514;
    margin: 0 0 4px 0;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 14.5px;
    color: #52525b;
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
}

.contact-item-text a:hover {
    color: #246261;
    text-decoration: underline;
}

.contact-form-box {
    background: #ffffff;
    border: 1px solid #eae7e2;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #181514;
    margin: 0 0 8px 0;
}

.contact-form-box p {
    font-size: 14.5px;
    color: #71717a;
    margin: 0 0 28px 0;
}

@media (max-width: 900px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }
}
