/* About Page Specific Styles */
.about-hero {
    height: 60vh;
    min-height: 400px;
}

.about-story {
    padding: 100px 0;
    background: #f8fafc;
}

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

.story-text .section-title {
    margin-bottom: 30px;
    color: #1a365d;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: left;
}

.mission-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.value-description {
    color: #4a5568;
    line-height: 1.6;
}

.team {
    padding: 100px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-content {
    padding: 30px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
}

.member-role {
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: #e2e8f0;
    color: #475569;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.testing-process {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: 50px;
    background: #e2e8f0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.step-description {
    color: #4a5568;
    line-height: 1.6;
}

.statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d, #2d3748);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.awards {
    padding: 100px 0;
    background: #f8fafc;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.award-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-10px);
}

.award-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 20px;
}

.award-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.award-organisation {
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 15px;
}

.award-description {
    color: #4a5568;
    line-height: 1.6;
}

.contact-cta {
    padding: 100px 0;
    background: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-text .section-title {
    color: #1a365d;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-image {
        order: -1;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .values-grid,
    .team-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
