/* Content Pages Shared Styles */
.content-page {
    background-color: #f9f9f7;
    min-height: 80vh;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 40px;
}

.content-heading {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.content-subheading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5a7026;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-list {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-list li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.content-list li::marker {
    color: #cd3c3c;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #cd3c3c;
    padding: 20px;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 1rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-container {
        padding: 20px;
        margin: 10px;
    }
    
    .content-heading {
        font-size: 2rem;
    }
    
    .content-subheading {
        font-size: 1.2rem;
    }
}
