* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --secondary-color: #fb923c;
    --accent-color: #fdba74;
    --text-color: #292524;
    --light-text: #78716c;
    --very-light-text: #a8a29e;
    --background: #ffffff;
    --light-bg: #fff7ed;
    --border-color: #e7e5e4;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #dc2626;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
}

.educational-banner {
    background: linear-gradient(to right, #ffedd5 0%, #fed7aa 50%, #ffedd5 100%);
    color: #9a3412;
    text-align: center;
    padding: 13px 22px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-color);
    letter-spacing: 0.5px;
}

header {
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.08);
    border-bottom: 1px solid #fed7aa;
}

.header-top {
    background: linear-gradient(to right, var(--light-bg) 0%, #ffedd5 100%);
    color: var(--primary-dark);
    padding: 11px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 28px;
    font-weight: 600;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 22px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.85;
}

.logo img {
    width: 56px;
    height: 56px;
    margin-right: 14px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.2));
}

.logo-text h1 {
    font-size: 29px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 13px;
    color: var(--light-text);
    font-weight: 600;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 6px 10px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), #dc2626);
    transition: width 0.3s;
    border-radius: 2px;
}

nav ul li a:hover::before {
    width: 80%;
}

.mobile-menu-btn {
    display: none;
    background: var(--primary-color);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
}

.hero {
    background: linear-gradient(120deg, #fff7ed 0%, #ffedd5 30%, #fed7aa 70%, #fdba74 100%);
    padding: 110px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 22px;
    color: var(--text-color);
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.75;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: 800;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffedd5 100%);
    transform: translateY(-3px);
}

.stats {
    padding: 65px 22px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffedd5 100%);
    border-radius: 20px;
    border: 2px solid #fed7aa;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 700;
}

.section {
    padding: 85px 22px;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #fef3c7;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #dc2626);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 46px;
    margin-bottom: 22px;
    display: block;
}

.feature-card h3 {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 22px;
    line-height: 1.65;
}

.feature-list {
    list-style: none;
    margin-top: 16px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 11px;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 17px;
}

.bg-light {
    background: linear-gradient(135deg, #fafaf9 0%, var(--light-bg) 100%);
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.retailer-card {
    background: white;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s;
    border: 2px solid #fef3c7;
}

.retailer-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.25);
    border-color: var(--primary-color);
}

.retailer-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-color);
}

.retailer-card p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 22px;
    line-height: 1.6;
}

.retailer-card a {
    display: inline-block;
    padding: 11px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #dc2626 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.retailer-card a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.safety-card {
    background: white;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-top: 6px solid var(--primary-color);
    transition: all 0.3s;
}

.safety-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.2);
}

.safety-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 11px;
    color: var(--primary-color);
}

.safety-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 500;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 2px solid #fef3c7;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.25);
    border-color: var(--primary-color);
}

.article-date {
    background: linear-gradient(135deg, var(--primary-color) 0%, #dc2626 100%);
    color: white;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 11px;
    color: var(--text-color);
}

.article-content p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-content a {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.article-content a:hover {
    color: #dc2626;
    transform: translateX(3px);
    display: inline-block;
}

.newsletter {
    background: linear-gradient(120deg, #fff7ed 0%, #ffedd5 30%, #fed7aa 70%, #fdba74 100%);
    padding: 85px 22px;
    text-align: center;
    position: relative;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-color);
}

.newsletter p {
    font-size: 17px;
    color: var(--text-color);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    max-width: 620px;
    margin: 0 auto;
    gap: 14px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 22px;
    border: 2px solid #fed7aa;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: white;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.newsletter-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.35s;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.45);
}

.small {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 16px;
    opacity: 0.8;
}

footer {
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    padding: 65px 0 32px;
    border-top: 3px solid #fed7aa;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 42px;
    margin-bottom: 42px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-section p,
.footer-section strong {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 11px;
    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.1;
    transition: all 0.3s;
    font-weight: 600;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.business-registration {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffedd5 100%);
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 32px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.business-registration h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-registration p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 9px;
    line-height: 1.7;
}

.business-registration strong {
    color: var(--text-color);
    font-weight: 800;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid #e7e5e4;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 11px;
    font-weight: 600;
}

.content-page {
    padding: 65px 0;
}

.content-page h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.content-page h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 42px 0 20px;
    color: var(--text-color);
}

.content-page h3 {
    font-size: 21px;
    font-weight: 800;
    margin: 32px 0 16px;
    color: var(--text-color);
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.content-page ul,
.content-page ol {
    margin-bottom: 30px;
    margin-left: 22px;
    padding-left: 22px;
}

.content-page li {
    margin-bottom: 11px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #fed7aa;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-section h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--text-color);
}

.contact-form {
    background: white;
    padding: 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 2px solid #fed7aa;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-item ul,
.faq-item ol {
    margin-left: 22px;
    padding-left: 22px;
}

.faq-section {
    margin-top: 40px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 34px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .features-grid,
    .retailers-grid,
    .safety-grid,
    .articles-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
