/* Static Pages Common Styles */

/* Base static page container */
.static-page {
    max-width: 900px;
    margin: 1rem auto;
    padding: 2rem;
    font-family: 'Crimson Text', serif;
    line-height: 1.8;
    color: #333;
}

.static-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1rem;
}

.static-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.static-page h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

.static-page p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    text-align: justify;
}

.static-page ul, .static-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.static-page li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.static-page strong {
    font-weight: 600;
    color: #1a1a1a;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Pricing page - uses same fonts but different structure */
.pricing-page {
    max-width: 1100px;
    margin: 1rem auto;
    padding: 2rem;
    font-family: 'Crimson Text', serif;
}

.pricing-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1rem;
}

/* About Us */
.founder-story {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.founder-story p {
    margin-bottom: 1rem;
}

.founder-story p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-top: 0;
}

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

.principle-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.principle-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.principle-card p {
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

.mission-statement {
    font-size: 1.6rem;
    font-style: italic;
    color: #555;
    font-weight: 500;
    margin: 2.5rem 0;
}

/***/



/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .static-page {
        padding: 1.5rem;
        margin: 0 auto;
    }
    .mission-statement {
        margin: 1.5rem 0;
        font-size: 1.4rem;
    }
    .static-page h1 {
        margin-top: 0;
        font-size: 2rem;
    }
    
    .static-page h2 {
        font-size: 1.5rem;
    }
    
    .static-page p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    .principles {
        grid-template-columns: 1fr;
    }
    .principle-card h3 {
        margin-top: 0;
    }
    .principle-card p {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    .founder-story {
        padding: 2rem 1rem;
    }

    .pricing-page {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .pricing-page h1 {
        font-size: 2rem;
        margin-top: 0;
    }
}

