/* About page specific styles - consistent with home and contact */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.about-hero h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

/* Our Story Section */
.about-section {
    margin-bottom: 2rem;
    padding: 2rem 0;
    background-color: #ffffff;
}

.about-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

.about-content-text {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #27ae60; /* Blue accent like home_screen.css */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.about-content-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-content-text p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 2rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card,
.vision-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #27ae60; /* Blue accent consistent */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.mission-card h4,
.vision-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-card p,
.vision-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Core Values Section */
.values-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #27ae60;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #27ae60 0%, #2980b9 100%); /* Blue gradient like contact */
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.stat-item p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
}

.why-choose-wrapper {
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #27ae60; /* Blue line like home_screen.css */
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    border-radius: 4px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-list li:before {
    content: "•"; /* Blue bullet like home_screen.css */
    color: #27ae60;
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.why-list li:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #27ae60 0%, #27ae60 100%); /* Dark gradient like contact newsletter */
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin: 3rem 0;
}

.cta-section h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #FF8F00;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #FFB74D;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .about-hero {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-hero h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .about-content-text {
        padding: 1rem;
    }
    
    .mission-card,
    .vision-card,
    .value-card {
        padding: 1.5rem;
    }
    
    .why-choose-wrapper {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .about-hero,
    .mission-vision-section,
    .stats-section,
    .why-choose-section,
    .cta-section {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .mission-card,
    .vision-card,
    .value-card {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
    
    .cta-button {
        display: none;
    }
}