

body {
    color: #333;
    /* line-height: 1.6; */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow Condensed', sans-serif;
}


 

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../image/head.jpg') no-repeat center center/cover;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    background-color: #c0a56e;
    color: #000000;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #937943;
    color: white;
}

/* Mission Section */
.mission {
    background-color: white;
    padding: 80px 0;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #586659;
}

.mission-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.mission-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Section */
.team {
    background-color: #586659;
    padding: 80px 0;
    color: white;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.member-info p {
    color: #ffe4ad;
    margin-bottom: 15px;
}

/* Values Section */
.values {
    background-color: white;
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #586659;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background-color: #f9f9f9;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #586659;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #c0a56e;
}

/* CTA Section */
.cta {
    background-color: #586659;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}


/* Responsive */
@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }
    

    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}