* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --secondary-color: #fb923c;
    --accent-color: #fdba74;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --very-light-text: #9ca3af;
    --background: #ffffff;
    --light-bg: #fff7ed;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.educational-banner {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #7c2d12;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-color);
}

header {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--background);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-top {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: var(--primary-dark);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
    font-weight: 500;
}

.contact-info a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--text-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 14px;
    color: var(--light-text);
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.hero {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 50%, #fb923c 100%);
    padding: 90px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.2;
}

.hero p {
    font-size: 19px;
    color: var(--text-color);
    max-width: 850px;
    margin: 0 auto 35px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #fff7ed;
    transform: translateY(-2px);
}

.stats {
    padding: 70px 20px;
    background-color: var(--background);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 600;
}

.section {
    padding: 90px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 15px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.bg-light {
    background: var(--light-bg);
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.retailer-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.retailer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.15);
}

.retailer-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.retailer-card p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.retailer-card a {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.retailer-card a:hover {
    background: var(--primary-dark);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.safety-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.safety-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.safety-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.article-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.15);
}

.article-date {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
}

.article-content {
    padding: 28px;
}

.article-content h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.article-content p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 18px;
    line-height: 1.6;
}

.article-content a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.article-content a:hover {
    color: var(--primary-dark);
}

.newsletter {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 50%, #fb923c 100%);
    padding: 90px 20px;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--text-color);
    font-weight: 800;
}

.newsletter p {
    font-size: 17px;
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto 35px;
}

.newsletter-form {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 22px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

footer {
    background-color: #f8faf9;
    padding: 70px 0 35px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-section h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-color);
}

.footer-section p,
.footer-section strong {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 2.2;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.business-registration {
    background-color: #fff7ed;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 35px;
    border-left: 4px solid var(--primary-color);
}

.business-registration h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-registration p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 8px;
    line-height: 1.7;
}

.business-registration strong {
    color: var(--text-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 10px;
}

.content-page {
    padding: 70px 0;
}

.content-page h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--text-color);
}

.content-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 45px 0 22px;
    color: var(--text-color);
}

.content-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 35px 0 18px;
    color: var(--text-color);
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: var(--text-color);
}

.content-page ul,
.content-page ol {
    margin-bottom: 35px;
    margin-left: 20px;
    padding-left: 20px;
}

.content-page li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    min-height: 160px;
}

.alert {
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 22px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.faq-item {
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

.faq-item h3 {
    font-size: 19px;
    color: var(--primary-color);
    font-weight: 700;
}

.safety-card ul {
    list-style: none;
    padding-left: 0;
}

.safety-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.safety-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 34px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .features-grid,
    .retailers-grid,
    .safety-grid,
    .articles-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1025px) {
    .contact-methods {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

