/* Organicon Support Website Styles */
/* Based on the green organic theme from organicon.market */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #7cb342;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

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

/* Main Content Sections */
section {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

section h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #7cb342;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.support-item h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-item p {
    color: #666;
    line-height: 1.6;
}

/* Legal Links */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.legal-link {
    display: inline-block;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

/* Footer */
footer {
    background: #2c5530;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer nav {
    margin-top: 1rem;
}

footer nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #7cb342;
}

/* Legal Pages Specific Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #7cb342;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #4a7c59;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #444;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #7cb342;
    margin: 2rem 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
    
    #hero p {
        font-size: 1.1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        margin: 0 1rem 2rem 1rem;
        padding: 1.5rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}