/* aboutus.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

[data-page="aboutus"].header {
    text-align: center;
}

[data-page="aboutus"].header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    padding: 20px 10px;
}

[data-page="aboutus"].header p {
    margin: 5px 0;
}

[data-page="aboutus"] .contact-info {
    background-color: #2B5A34;
    color: white;
    padding: 20px 10px;
}

[data-page="aboutus"].main-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

[data-page="aboutus"] .content-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

[data-page="aboutus"] .image-grid {
    flex: 1;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

[data-page="aboutus"] .image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[data-page="aboutus"] .image-grid .tall {
    grid-row: span 2;
}

[data-page="aboutus"] .text-content {
    flex: 1.5;
}

[data-page="aboutus"] .text-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

[data-page="aboutus"] .text-content p {
    margin-bottom: 20px;
}

[data-page="aboutus"] .text-content ul {
    list-style: none;
    padding-left: 0;
}

[data-page="aboutus"] .text-content li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

[data-page="aboutus"] .text-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #2B5A34;
    font-size: 20px;
}

@media (max-width: 768px) {
    [data-page="aboutus"] .content-wrapper {
        flex-direction: column;
    }

    [data-page="aboutus"] .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    [data-page="aboutus"] .image-grid .tall {
        grid-row: auto;
    }
}