/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container img {
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    gap: 25px;
}

.nav-container a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-container a:hover {
    color: #ff6b95;
    background-color: #fff0f5;
}

.nav-container a.active {
    color: #ff6b95;
    font-weight: bold;
}

.nav-container a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: #ff6b95;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 5% 40px;
    background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.underline {
    border-bottom: 3px solid #ff6b95;
    padding-bottom: 5px;
}

.tagline {
    font-size: 1.3rem;
    color: #ff6b95;
    font-style: italic;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
}

/* About Intro */
.about-intro {
    margin-bottom: 50px;
    text-align: center;
}

.about-intro h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Mission & Vision */
.mission-vision {
    margin-bottom: 50px;
}

.mission-vision h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.mv-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
}

.mission h3, .vision h3 {
    color: #ff6b95;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.7;
}

/* Values */
.values {
    margin-bottom: 50px;
}

.values h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.values-container {
    display: flex;
    justify-content: center;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #ff6b95;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team */
.team h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    color: #ff6b95;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.team-member img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b95;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b95;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 15px 5%;
    }
    
    .nav-container {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .mv-container {
        flex-direction: column;
    }
    
    .mission, .vision {
        min-width: 100%;
    }
    
    .team-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .page-header {
        padding: 40px 5% 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .container {
        padding: 30px 5%;
    }
    
    .about-intro h2, .mission-vision h2, .values h2, .team h2 {
        font-size: 1.6rem;
    }
    
    .about-intro p, .mission p, .vision p, .value-card p {
        font-size: 1rem;
    }
    
    .footer-section {
        min-width: 100%;
    }
}