/* About Page Specific Styles */

.about-content {
    padding: 3rem 0;
    background: var(--whisper-white);
}

.content-section {
    margin-bottom: 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: var(--gunmetal-gray);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #005a8b 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.placeholder-image h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.placeholder-image p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.mission-card {
    background: var(--whisper-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.mission-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature {
    padding: 1.5rem;
    background: var(--whisper-white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-coral);
}

.feature h4 {
    color: var(--gunmetal-gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Company Info */
.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--whisper-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.info-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card strong {
    color: var(--gunmetal-gray);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #005a8b 100%);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: white;
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .mission-cards,
    .features-grid,
    .company-info {
        grid-template-columns: 1fr;
    }
    
    .feature,
    .mission-card,
    .info-card {
        padding: 1rem;
    }
    
    .placeholder-image {
        min-height: 150px;
        padding: 1.5rem;
    }
}