/* Legal Pages Styling */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 20px;
    line-height: 1.8;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-container p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.legal-container strong {
    color: var(--text-primary);
}

.last-updated {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-container section {
    margin-bottom: 3rem;
}

.privacy-promise {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.privacy-promise p {
    font-style: italic;
    margin-bottom: 1rem;
}

.privacy-promise p:last-child {
    margin-bottom: 0;
    text-align: right;
    font-style: normal;
    font-weight: 600;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.about-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.story-section {
    padding: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.author-image {
    position: sticky;
    top: 100px;
}

.author-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.author-info {
    text-align: center;
    margin-top: 1rem;
}

.author-info h3 {
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-text h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.signature {
    margin-top: 3rem;
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.mission-section {
    background: var(--light-color);
    padding: 4rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-item {
    text-align: center;
    padding: 2rem;
}

.mission-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-section {
    padding: 4rem 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-secondary);
}

.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-cta h2 {
    color: white;
    border: none;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .author-image {
        position: static;
        max-width: 200px;
        margin: 0 auto;
    }

    .legal-container {
        padding: 2rem 15px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}