body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.about-header {
    height: 300px;
    background-image: url('../uploads/header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.about-header .dark {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.about-header .headhead {
    font-size: 30px;
    
    padding-top: 40px;
}

.about-header .headtext {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

.about-main {
    padding: 40px 20px;
    max-width: 960px;
    margin: 0 auto;
}

.about-section, .mission-section, .ecommerce-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.about-section h2, .mission-section h2, .ecommerce-section h2 {
    color: #66AB36;
    margin-bottom: 15px;
    font-size: 2em;
}

.mission-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f9f9f9;
}

.mission-content {
    flex: 1;
}

.mission-image {
    flex-basis: 300px;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
}

.ecommerce-section {
    background-color: #eaf5e1;
    text-align: center;
}

footer {
    width: 100%;
    height: 220px;
    background-color: #222222;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Tablet screens (max-width: 900px) */
@media (max-width: 900px) {
    .about-main {
        padding: 24px 8px;
    }
    .about-section, .mission-section, .ecommerce-section {
        padding: 18px 10px;
    }
    .mission-section {
        flex-direction: column;
        gap: 18px;
    }
    .mission-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    .about-header {
        height: 180px;
    }
    .about-header .headhead {
        font-size: 2em;
    }
}

/* Mobile screens (max-width: 600px) */
@media (max-width: 600px) {
    .about-header {
        height: 250px;
        padding: 0;
    }
    .about-header .headhead {
        font-size: 20px;
    margin-top: 0px;
    }
    .about-header .headtext {
        font-size: 0.95em;
        padding: 0 8px;
    }
    .about-main {
        padding: 10px 2px;
    }
    .about-section, .mission-section, .ecommerce-section {
        padding: 8px 4px;
        font-size: 0.98em;
    }
    .mission-section {
        flex-direction: column;
        gap: 10px;
    }
    .mission-image img {
        max-width: 100%;
        height: auto;
    }
    .ecommerce-section {
        font-size: 0.98em;
    }
}
