/* About Page Complete Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.4) 0%, rgba(27, 38, 59, 0.3) 100%), url('../images/about_photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.2) 0%, rgba(27, 38, 59, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e1dd;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0d1b2a;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #1b263b;
}

/* Trust benefits list */
.about-benefits {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 1rem auto 2.5rem;
    max-width: 900px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e1dd 100%);
    border: 2px solid rgba(13, 27, 42, 0.15);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(13, 27, 42, 0.12);
}

.about-benefits li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.75rem;
    color: #1b263b;
}

.about-benefits li + li {
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.about-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    top: 0.8rem;
    color: #0d1b2a;
    font-weight: 700;
}

.about-benefits strong {
    color: #0d1b2a;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e0e1dd 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid rgba(13, 27, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.stat h3 {
    font-size: 2.5rem;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #1b263b;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e1dd 100%);
    border-radius: 12px;
    border: 2px solid rgba(13, 27, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #0d1b2a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: #1b263b;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.team-member p:last-child {
    color: #1b263b;
    line-height: 1.6;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e0e1dd 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid rgba(13, 27, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.value-item h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #1b263b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
        min-height: 50vh;
        background-size: cover;
        background-position: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .stats,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 40vh;
        padding: 3rem 0 2rem;
        background-size: cover;
        background-position: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
