/* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif; /* Choose a font that matches your design */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Light grey background for the page */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

h1, h2 {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: #fff;
    padding: 60px 0;
    text-align: left;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 192, 34, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-section .logo {
    flex-shrink: 0;
}

.hero-section .logo .logo-image {
    height: 200px;
    width: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
}

.hero-text-content {
    flex: 1;
}

.hero-section h1 {
    font-size: 2.8rem; /* Adjust as needed */
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 600px; /* Constrain width of paragraph */
}

/* Card style for mailing list and services sections */
.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: -50px; /* To make it overlap hero or create distinct separation */
    position: relative; /* For stacking context if needed */
    z-index: 10;
}

/* Mailing List Section */
.mailing-list-section {
    /* No specific background, relies on card */
    padding: 20px 0; /* Spacing around the card */
}

.mailing-list-section h2 {
    font-size: 1.5rem;
    color: #333;
    text-align: left; /* As per image */
    margin-bottom: 15px;
}

.mailing-list-form {
    display: flex;
    gap: 10px;
}

.mailing-list-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.mailing-list-form button {
    padding: 12px 25px;
    background-color: #2b5554; /* Orange color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.mailing-list-form button:hover {
    background-color: #203d3c; /* Darker orange */
}

/* Services Section */
.services-section {
    padding: 40px 0; /* Spacing around the card */
}

.services-section .card {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
    text-align: center;
    margin-top: 20px; /* Reset negative margin or adjust */
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.service-item {
    flex: 1;
    min-width: 150px; /* Minimum width before wrapping */
    padding: 25px 15px;
    background-color: rgb(19, 191, 35, 0.9);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item .icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.service-item .icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(78%) saturate(2723%) hue-rotate(217deg) brightness(91%) contrast(89%);
}

/* Example icon placeholders - replace with actual icons */
.service-item:nth-child(2) .icon::before { content: ""; } /* Store */
.service-item:nth-child(3) .icon::before { content: ""; } /* Leaf/Eco */


.service-item p {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #2d3748; /* Dark grey/blueish */
    color: #e2e8f0; /* Light grey text */
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-nav {
    margin-bottom: 15px;
}

.footer-nav a {
    color: #e2e8f0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
}

/* Basic Responsiveness */
@media (max-width: 768px) {
    .hero-content .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .mailing-list-form {
        flex-direction: column;
    }
    .mailing-list-form button {
        width: 100%;
    }
    .services-section .card {
        flex-direction: column;
        align-items: center;
    }
    .service-item {
        min-width: auto; /* Reset min-width for stacked items */
        width: 80%; /* Adjust width for stacked items */
        margin-bottom: 20px;
    }
    .card {
        margin-top: 20px; /* Adjust overlap for smaller screens if needed */
    }
}

/* Sources: */
/* 1. https://www.americaloaded.com/2023/03/21/googles-bard-lags-behind-gpt-4-and-claude-in-head-to-head-comparison/ */