/* ===================================
   About Page Specific Styles
   =================================== */

.content {
    padding: 20px;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 40px 20px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.about-hero h2 {
    color: #005a29;
    font-size: 3em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4em;
    color: #555;
    font-style: italic;
    margin: 0 0 40px 0;
}

.profile-image-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.profile-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #005a29;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

/* Story Section */
.story-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(to right, #f0f7f4, #ffffff);
    border-radius: 12px;
    border-left: 5px solid #005a29;
}

.story-section h3 {
    color: #005a29;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.story-content p {
    font-size: 1.25em;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content strong {
    color: #005a29;
    font-weight: 600;
}

.story-content em {
    color: #007a39;
    font-style: italic;
}

/* Experience Section */
.experience-section {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.experience-section h3 {
    color: #005a29;
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
}

.experience-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.experience-highlight {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 90, 41, 0.3);
}

.exp-number {
    font-size: 5em;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.exp-label {
    font-size: 1.3em;
    color: white;
    font-weight: 500;
}

.experience-text p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.experience-text p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    margin: 60px 0;
    padding: 50px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.values-section h3 {
    color: #005a29;
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 90, 41, 0.2);
}

.value-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.value-card h4 {
    color: #005a29;
    font-size: 1.5em;
    margin: 15px 0;
    font-weight: 600;
}

.value-card p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Personal Section */
.personal-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 90, 41, 0.3);
}

.personal-section h3 {
    color: white;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.personal-content p {
    font-size: 1.25em;
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.95;
}

.personal-content p:last-child {
    margin-bottom: 0;
}

.personal-content strong {
    font-weight: 600;
    opacity: 1;
}

/* About CTA Section */
.about-cta {
    text-align: center;
    margin: 60px 0 40px;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    border-radius: 12px;
}

.about-cta h3 {
    color: #005a29;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 30px;
}

/* Accessibility Section */
.accessibility-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f0f7f4;
    border-radius: 12px;
    border: 2px dashed #005a29;
}

.button-text-size {
    background: #005a29;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.button-text-size:hover {
    background: #003d1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 90, 41, 0.3);
}

.text-size-icon {
    font-size: 1.3em;
}

.accessibility-note {
    font-size: 1em;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.button-primary {
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
}

.button-primary:hover {
    background: linear-gradient(135deg, #003d1e 0%, #005a29 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 90, 41, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .profile-image {
        max-width: 280px;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-highlight {
        padding: 25px;
    }
    
    .exp-number {
        font-size: 4em;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .story-section,
    .experience-section,
    .personal-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 30px 15px 40px;
    }
    
    .about-hero h2 {
        font-size: 1.8em;
    }
    
    .profile-image {
        max-width: 220px;
    }
    
    .story-content p,
    .experience-text p,
    .personal-content p {
        font-size: 1.1em;
    }
    
    .value-card {
        padding: 25px;
    }
    
    .button-text-size {
        padding: 12px 25px;
        font-size: 1em;
    }
}
