* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #27ae60;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --very-light-text: #bbb;
    --light-bg: #f9f9f9;
    --border-color: #eaeaea;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-hover: rgba(52, 152, 219, 0.1);
}

body {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.educational-banner {
    background-color: #f8fafc;
    color: #334155;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
}

header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    background: #f0f9ff;
    padding: 8px 0;
    border-bottom: 1px solid #cce3f6;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 15px;
    color: var(--light-text);
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s;
    position: relative;
}

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, #f0f9ff 0%, #e1f5fe 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
}

.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--light-text);
    font-size: 16px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.bg-light {
    background: var(--light-bg);
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.retailer-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.retailer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.retailer-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
    color: var(--primary-dark);
}

.retailer-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.retailer-card a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.retailer-card a:hover {
    background: var(--accent-color);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.safety-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.safety-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.safety-card p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.8;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.article-date {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.article-content p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.article-content a:hover {
    color: var(--accent-color);
}

.newsletter {
    background: linear-gradient(135deg, #e1f5fe 0%, #c0e3f6 100%);
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 80px 0;
}

.newsletter h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
}

.newsletter p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 20px auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 0 5px 5px 0;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

footer {
    background-color: #0c4a6e;
    color: #f0f9ff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e1f5fe;
}

.footer-section p,
.footer-section ul li {
    font-size: 14px;
    margin-bottom: 15px;
    color: #cce3f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #cce3f6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.business-registration {
    background-color: #083654;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.business-registration h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e1f5fe;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.business-registration p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cce3f6;
}

.business-registration strong {
    color: #e1f5fe;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #cce3f6;
    margin-bottom: 10px;
}

.content-page {
    padding: 60px 0;
}

.content-page h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.content-page h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.content-page h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.content-page ul,
.content-page ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.content-page li {
    margin-bottom: 10px;
}

.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 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    height: 150px;
    resize: vertical;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #059669;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .features-grid,
    .retailers-grid,
    .safety-grid,
    .articles-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
        padding: 12px 0;
    }
}
