/* Simplified About Page Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(18, 61, 0, 0.8) 0%, #000 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(46, 204, 113, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Utility Classes */
.centered {
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background-color: #080808;
    position: relative;
    overflow: hidden;
}

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

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Common section headers */
.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, #1abc9c);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    padding: 80px 0 100px;
    background-color: #050505;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: rgba(15, 15, 15, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(46, 204, 113, 0.1);
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.member-title {
    font-size: 0.9rem;
    color: #2ecc71;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background-color: #080808;
    position: relative;
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.skill-tag {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(46, 204, 113, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(18, 61, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(46, 204, 113, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-section,
    .team-section,
    .expertise-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .skill-tag {
        padding: 10px 16px;
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-section,
    .team-section,
    .expertise-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-tags {
        gap: 10px;
    }
    
    .skill-tag {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}