* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #00cc88;
    --accent-color: #ff6b35;
    --dark-bg: #1a365d;
    --light-bg: #f7fafc;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
    font-size: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.educational-banner {
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
}

.educational-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    background: var(--dark-bg);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo-text h1 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--light-bg);
}

.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero h2 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.section {
    padding: 100px 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.bg-light {
    background: var(--light-bg);
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.retailer-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.retailer-card:hover {
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.retailer-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.retailer-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.retailer-card a {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.retailer-card a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.safety-card {
    background: white;
    padding: 45px;
    border-radius: 16px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.safety-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.safety-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.article-card:hover {
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.article-date {
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 32px;
}

.article-content h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.article-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-content a:hover {
    color: var(--accent-color);
}

.newsletter {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 24px;
    border-radius: 24px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: float 25s linear infinite;
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.newsletter p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-form button {
    padding: 18px 40px;
    background: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-form button:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.business-registration {
    background: #2d3748;
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
}

.business-registration h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.business-registration p {
    color: #cbd5e0;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.business-registration strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin-bottom: 12px;
    font-size: 15px;
}

.content-page {
    padding: 60px 24px;
    min-height: calc(100vh - 400px);
}

.content-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.content-page h2 {
    font-size: 36px;
    margin: 50px 0 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.content-page h3 {
    font-size: 26px;
    margin: 40px 0 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.content-page p {
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 16px;
}

.content-page ul,
.content-page ol {
    margin: 24px 0;
    padding-left: 48px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-page li {
    margin-bottom: 12px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.alert {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 500;
}

.alert-success {
    background: #f0fff4;
    color: #22543d;
    border: 2px solid #9ae6b4;
}

.alert-error {
    background: #fed7d7;
    color: #742a2a;
    border: 2px solid #fc8181;
}

.faq-item {
    background: white;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .features-grid,
    .retailers-grid,
    .safety-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-page h1 {
        font-size: 36px;
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .newsletter {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 16px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .section {
        padding: 40px 16px;
    }
    
    .feature-card,
    .safety-card {
        padding: 32px 24px;
    }
    
    .newsletter {
        padding: 40px 16px;
        border-radius: 16px;
    }
}
