* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e11d48;
    --primary-dark: #be123c;
    --secondary-color: #f43f5e;
    --accent-color: #fb7185;
    --text-color: #18181b;
    --light-text: #71717a;
    --very-light-text: #a1a1aa;
    --background: #ffffff;
    --light-bg: #fff1f2;
    --border-color: #e4e4e7;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #dc2626;
}

body {
    font-family: 'Nunito', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.educational-banner {
    background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 50%, #fda4af 100%);
    color: #881337;
    text-align: center;
    padding: 15px 24px;
    font-weight: 800;
    font-size: 14px;
    border-bottom: 4px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

header {
    background-color: var(--background);
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffe4e6 100%);
    color: var(--primary-dark);
    padding: 13px 0;
    font-size: 14px;
    border-bottom: 2px solid #fecdd3;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 32px;
    font-weight: 700;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.04);
}

.logo img {
    width: 62px;
    height: 62px;
    margin-right: 18px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(225, 29, 72, 0.25));
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.logo-text p {
    font-size: 13px;
    color: var(--light-text);
    font-weight: 800;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 38px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s;
    padding: 9px 14px;
    border-radius: 10px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #f97316);
    transition: transform 0.3s;
    border-radius: 2px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f97316 100%);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 11px 15px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.35);
}

.hero {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 30%, #fecdd3 70%, #fda4af 100%);
    padding: 125px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 26px;
    color: var(--text-color);
    letter-spacing: -2px;
    text-shadow: 0 3px 10px rgba(225, 29, 72, 0.15);
}

.hero p {
    font-size: 20px;
    color: var(--text-color);
    max-width: 860px;
    margin: 0 auto 38px;
    line-height: 1.8;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 38px;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f97316 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.4);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 40px rgba(225, 29, 72, 0.5);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 4px solid var(--primary-color);
    font-weight: 900;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffe4e6 100%);
    transform: translateY(-4px);
}

.stats {
    padding: 75px 24px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.stat-item {
    text-align: center;
    padding: 38px 30px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffe4e6 100%);
    border-radius: 26px;
    border: 3px solid #fecdd3;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.15);
    transition: all 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 40px rgba(225, 29, 72, 0.3);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 50px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(225, 29, 72, 0.1);
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section {
    padding: 95px 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 65px;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 20px;
    color: var(--light-text);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.feature-card {
    background: white;
    border-radius: 30px;
    padding: 44px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 4px solid #fff1f2;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-color), #f97316);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 28px 56px rgba(225, 29, 72, 0.3);
}

.feature-icon {
    font-size: 54px;
    margin-bottom: 26px;
    display: block;
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 26px;
    line-height: 1.7;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 13px;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 700;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
}

.bg-light {
    background: linear-gradient(135deg, #fafaf9 0%, var(--light-bg) 100%);
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.retailer-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s;
    border: 4px solid #fff1f2;
}

.retailer-card:hover {
    transform: translateY(-14px) rotate(-2deg);
    box-shadow: 0 24px 52px rgba(225, 29, 72, 0.3);
    border-color: var(--primary-color);
}

.retailer-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-color);
}

.retailer-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 26px;
    line-height: 1.7;
    font-weight: 600;
}

.retailer-card a {
    display: inline-block;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f97316 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.retailer-card a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.4);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.safety-card {
    background: white;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border-bottom: 7px solid var(--primary-color);
    transition: all 0.4s;
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(225, 29, 72, 0.28);
}

.safety-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.safety-card p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.75;
    font-weight: 600;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.article-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    border: 4px solid #fff1f2;
}

.article-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 52px rgba(225, 29, 72, 0.3);
    border-color: var(--primary-color);
}

.article-date {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f97316 100%);
    color: white;
    padding: 16px 26px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content {
    padding: 34px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--text-color);
}

.article-content p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 600;
}

.article-content a {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content a:hover {
    color: #f97316;
    transform: translateX(6px);
    display: inline-block;
}

.newsletter {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 30%, #fecdd3 70%, #fda4af 100%);
    padding: 95px 24px;
    text-align: center;
    position: relative;
}

.newsletter h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -1px;
}

.newsletter p {
    font-size: 19px;
    color: var(--text-color);
    max-width: 680px;
    margin: 0 auto 38px;
    line-height: 1.8;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    max-width: 680px;
    margin: 0 auto;
    gap: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 19px 26px;
    border: 3px solid #fecdd3;
    border-radius: 18px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: white;
    font-weight: 700;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.15);
}

.newsletter-form button {
    padding: 19px 38px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 10px 28px rgba(225, 29, 72, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 38px rgba(225, 29, 72, 0.5);
}

.small {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 20px;
    opacity: 0.9;
    font-weight: 700;
}

footer {
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    padding: 75px 0 38px;
    border-top: 5px solid #fecdd3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section strong {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 13px;
    line-height: 1.8;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 2.4;
    transition: all 0.3s;
    font-weight: 700;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.business-registration {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffe4e6 100%);
    padding: 36px;
    border-radius: 28px;
    margin-bottom: 38px;
    border-bottom: 7px solid var(--primary-color);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.15);
}

.business-registration h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-registration p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 11px;
    line-height: 1.8;
    font-weight: 600;
}

.business-registration strong {
    color: var(--text-color);
    font-weight: 900;
}

.footer-bottom {
    text-align: center;
    padding-top: 38px;
    border-top: 4px solid #e4e4e7;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 13px;
    font-weight: 800;
}

.content-page {
    padding: 75px 0;
}

.content-page h1 {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 38px;
    color: var(--text-color);
    letter-spacing: -1.5px;
}

.content-page h2 {
    font-size: 34px;
    font-weight: 900;
    margin: 50px 0 24px;
    color: var(--text-color);
}

.content-page h3 {
    font-size: 26px;
    font-weight: 900;
    margin: 38px 0 20px;
    color: var(--text-color);
}

.content-page p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 24px;
    color: var(--text-color);
    font-weight: 600;
}

.content-page ul,
.content-page ol {
    margin-bottom: 34px;
    margin-left: 28px;
    padding-left: 28px;
}

.content-page li {
    margin-bottom: 13px;
    line-height: 1.8;
}

.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 18px;
    border: 2px solid #fecdd3;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: white;
    font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 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: 28px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-color);
}

.contact-form {
    background: white;
    padding: 0;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #fecdd3;
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
    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: 28px;
    padding-left: 28px;
}

.faq-section {
    margin-top: 40px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 34px;
    }
    
    .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: 8px;
        align-items: flex-end;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
