/* About Page Styles */

/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #d7263d 0%, #8B0000 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #fff;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: #d7263d;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: left;
}

.mission-text {
    text-align: left;
}

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

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-section .container {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0;
}

.story-text h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: #d7263d;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: left;
}

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

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #fff;
}

.values-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}

.approach-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    padding-left: 50px;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: #d7263d;
    font-weight: bold;
    font-size: 1.2rem;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #d7263d;
    margin-bottom: 15px;
    font-weight: 400;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d7263d;
}

.member-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #d7263d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.member-name {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 400;
}

.member-title {
    font-size: 1rem;
    color: #d7263d;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.team-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-style: italic;
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-list {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .mission-section,
    .story-section,
    .values-section,
    .approach-section,
    .team-section {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .member-image img,
    .member-placeholder {
        width: 100px;
        height: 100px;
    }
}
