/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, #6b8e23 0%, #8db33c 100%);
    color: white;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5em;
    font-weight: normal;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.95em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.95em;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Main Content Grid */
main {
    padding: 40px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.content-column
{
    padding: 40px 0;
}

.content-column h2 {
    color: #6b8e23;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-column h3 {
    color: #6b8e23;
    font-size: 1.2em;
    margin: 20px 0 10px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-column p {
    margin-bottom: 15px;
    text-align: justify;
}

.content-column ul {
    margin: 15px 0 15px 25px;
}

.content-column li {
    margin-bottom: 8px;
}

/* Founder Photo */
.founder-photo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 20px 0;
    border: 1px solid #ddd;
}

/* Read More Links */
.read-more {
    display: inline-block;
    color: #6b8e23;
    text-decoration: none;
    font-size: 0.9em;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #e0e0e0;
}

/* CTA Button */
.cta-button {
    margin-top: 30px;
}

.cta-button .btn {
    background-color: #6b8e23;
    color: white;
    padding: 14px 28px;
    font-size: 1em;
}

.cta-button .btn:hover {
    background-color: #5a7a1e;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #6b8e23 0%, #8db33c 100%);
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.footer-image {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.footer-right h2 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-right p {
    margin-bottom: 15px;
}

.footer-right a {
    color: white;
    text-decoration: underline;
}

.footer-right address {
    font-style: normal;
    margin-top: 15px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero-image {
        opacity: 0.3;
        width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-left {
        text-align: center;
    }

    .footer-image {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .content-column h2 {
        font-size: 1.3em;
    }

    .hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5em;
    }

    .hero {
        padding: 30px 20px;
    }

    main {
        padding: 30px 15px;
    }

    footer {
        padding: 40px 15px;
    }
}