:root {
    --soil-brown: #5C4B36;
    --plant-green: #6B8E23;
    --ocean-blue: #3A7CA5;
    --gold-accent: #D4AF37;
    --white: #FFFFFF;
    --light-bg: #f5f5f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--soil-brown);
    line-height: 1.6;
}



.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--ocean-blue);
    color: var(--white);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 4rem 2rem;
}

.about-section.alt-bg {
    background: #e0e6eb;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-content .text {
    flex: 1 1 500px;
}

.about-content .text h2 {
    color: var(--plant-green);
    margin-bottom: 1rem;
}

.about-content .text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-content .text a {
    color: var(--ocean-blue);
    text-decoration: underline;
}

.about-content .image img {
    width: 200px;        /* small width */
    height: 200px;       /* same as width for perfect circle */
    border-radius: 50%;  /* makes it circular */
    object-fit: cover;   /* fills circle without distortion */
    margin-bottom: 15px; /* spacing below image */
    border: 2px solid var(--plant-green); /* optional border */
}


/* About Page Mobile Fixes */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem; /* slightly smaller gap */
    }
    .about-content.reverse {
        flex-direction: column;
    }
    .about-content .text {
        flex: 1 1 100%;
    }
    .about-content .image img {
        width: 150px;   /* smaller image on mobile */
        height: 150px;
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem; /* smaller hero title */
    }

    .hero p {
        font-size: 1rem; /* smaller hero paragraph */
    }

    .about-section {
        padding: 2rem 1rem; /* reduce padding for small screens */
    }

    .about-content .text h2 {
        font-size: 1.4rem; /* smaller headings */
    }

    .about-content .text p, 
    .about-content .text ul {
        font-size: 0.95rem; /* smaller text */
    }

    .about-content .image img {
        width: 120px;   /* very small screens */
        height: 120px;
    }
}

