/* General Styles */
body {
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

h1, h2, h3 {
    color: #3A7D44;
}

p, li {
    font-size: 1rem;
    line-height: 1.6;
}

/* Navigation */
.navigation {
    background-color: #3A7D44;
    color: white;
    text-align: center;
    padding: 1rem;
}

.navigation a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

.navigation a.active {
    text-decoration: underline;
}

.navigation a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('/static/images/seafood-blue.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem;
    background-color: #fff;
    text-align: center;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.benefit {
    background-color: #e8f5e9;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.benefit h3 {
    margin-top: 0;
    color: #2E7D32;
}

.benefit p {
    color: #555;
}

/* Food Safety Section */
.food-safety-section {
    padding: 2rem;
    background-color: #f0f0f0;
    text-align: left;
}

.food-safety-section ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* Call to Action */
.cta-section {
    background-color: #3A7D44;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.cta-btn {
    background-color: #fff;
    color: #3A7D44;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #2D5E33;
    color: white;
}

/* Footer */
.site-footer {
    background-color: #2D5E33;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}
