/* General Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 40px 20px;
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Section Styles */
.section {
    margin-bottom: 50px;
    padding: 40px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Company Background Section */
.company-background {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #3498db;
}

.company-background h2 {
    color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    padding-top: 3.125rem;
    display: inline-block;
}

/* Team Section */
.team-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-header {
    text-align: center;
    margin-bottom: 30px;
}

.team-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.team-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px 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 15px 30px rgba(0, 0, 0, 0.1);
}

.member-content {
    padding: 25px;
}

.member-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ceo .member-image {
    border-color: #3498db;
}

.cfo .member-image {
    border-color: #e74c3c;
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.member-title {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 15px;
}

.foreword {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #3498db;
}

.foreword p {
    font-style: italic;
    color: #555;
    text-align: justify;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    text-align: center;
    padding: 60px 40px;
}

.mission-section h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 2rem;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.mission-statement p {
    text-align: justify;
}

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

/* Responsive Design */
@media (max-width: 900px) {
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }
    
    .section {
        padding: 20px;
    }
    
    .team-header h2 {
        font-size: 1.8rem;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
}
