@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
    background: #f9fafb;
    margin-bottom: 2rem;
    box-sizing: border-box;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    color: #005b2e;
    text-align: center;
    margin: 2rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.history-section {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.history-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.history-text {
    flex: 1;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

.history-text p {
    margin-bottom: 1rem;
}

.history-image {
    flex: 1;
    max-width: 500px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.history-link {
    display: inline-block;
    background: #005b2e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.history-link:hover {
    background: #003018;
}

.mission-vision-section {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.mission-card, .vision-card {
    flex: 1;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.4rem;
    color: #005b2e;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .history-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .history-image {
        max-width: 100%;
        order: -1;
    }

    .history-image img {
        border-radius: 12px;
    }

    .mission-vision-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mission-card, .vision-card {
        padding: 1.5rem;
    }

    .mission-card h3, .vision-card h3 {
        font-size: 1.5rem;
    }

    .mission-card p, .vision-card p {
        font-size: 1.1rem;
    }

    .history-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 479px) {
    .section-title {
        font-size: 1.8rem;
    }

    .mission-card h3, .vision-card h3 {
        font-size: 1.4rem;
    }
}