
/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* ... previous CSS rules ... */

/* Header & Hero Section */
.hero {
    background: url('https://faakoaquaponics.com/wp-content/uploads/2024/08/concrete-fishpond-1024x576.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.5em;
}

.cta-button {
    display: inline-block;
    background: #007BFF;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

/* ... rest of your CSS rules ... */

/* Main Content Sections */
main section {
    padding: 40px 20px;
    text-align: center;
}

#about {
    background-color: #fff;
}

#products {
    background-color: #e2e2e2;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
}

/* Contact Section */
#contact {
    background-color: #fff;
}

.contact-info {
    text-align: left;
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-top: 20px;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

#contact-form {
    max-width: 600px;
    margin: auto;
    text-align: left;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#contact-form button {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}