/* Legal Pages Styles */

.legal-content {
    padding: 6rem 0;
    background: var(--light-bg);
    min-height: calc(100vh - 8rem);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.8rem;
    color: var(--light-text);
    max-width: 60rem;
    margin: 0 auto;
}

.content-section {
    background: var(--white);
    border-radius: 1.6rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.content-section p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--light-bg);
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.4rem;
    color: var(--light-text);
    margin: 0;
}

/* Bullet List */
.bullet-list {
    list-style: none;
    margin: 2rem 0;
}

.bullet-list li {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.bullet-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 0.8rem;
    height: 0.8rem;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Info Box */
.info-box {
    background: var(--light-bg);
    border-radius: 1.2rem;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.info-box ul li {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.info-box ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.info-box .note {
    font-size: 1.4rem;
    color: var(--light-text);
    font-style: italic;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 1.2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.benefit-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.4rem;
    color: var(--light-text);
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem;
    background: var(--primary-color);
    border-radius: 1.6rem;
    color: var(--white);
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cta-buttons .btn {
    min-width: 18rem;
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feature-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .legal-content {
        padding: 4rem 0;
    }

    .page-header {
        margin-bottom: 3rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .content-section {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .feature-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }

    .page-header p {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .feature-card,
    .benefit-card {
        padding: 1.5rem;
    }
}