* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* DISCLAIMER BANNER */
.disclaimer-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 1.2rem;
    text-align: center;
    border-bottom: 4px solid #a93226;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    position: relative;
    z-index: 200;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1rem;
}

.disclaimer-content strong {
    font-size: 1.2rem;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar a:hover,
.navbar a.active {
    background-color: #f39c12;
    color: #2c3e50;
    transform: scale(1.05);
}

/* HERO */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-disclaimer {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9)), url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1920&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-disclaimer h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero-disclaimer p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid #f39c12;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.5);
}

/* MAIN CONTENT */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    margin-top: 2rem;
    border-bottom: 3px solid #f39c12;
    padding-bottom: 1rem;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    color: #34495e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.8;
}

a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* DISCLAIMER CONTAINER */
.disclaimer-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.disclaimer-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.disclaimer-alert {
    background: #fff3cd;
    border-left: 6px solid #e74c3c;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.disclaimer-alert h2 {
    color: #c0392b;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.disclaimer-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.disclaimer-section:last-of-type {
    border-bottom: none;
}

.disclaimer-section h2 {
    font-size: 1.6rem;
    color: #e74c3c;
    margin-top: 0;
}

.disclaimer-acknowledgment {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.disclaimer-acknowledgment h2 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
}

.disclaimer-acknowledgment p {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.disclaimer-contact {
    background: #e8f4f8;
    border: 2px solid #3498db;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.disclaimer-contact h2 {
    color: #3498db;
    border-bottom: none;
}

.disclaimer-contact p {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* PRODUCTS GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.product-card p {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    color: #666;
}

.product-link {
    display: inline-block;
    padding: 1.2rem 1.5rem;
    color: #f39c12;
    font-weight: 700;
}

/* BENEFITS */
.benefits {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem;
    border-radius: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-item h3 {
    color: #f39c12;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.cta-section p {
    color: white;
    font-size: 1.2rem;
}

/* FOOTER */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-section ul {
    list-style: none;
    margin-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f39c12;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 2px solid #34495e;
    padding-top: 1.5rem;
    color: #95a5a6;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #f39c12;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .navbar ul {
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .navbar a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .disclaimer-container {
        padding: 1.5rem;
    }

    .disclaimer-section h2 {
        font-size: 1.3rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .disclaimer-banner {
        padding: 0.8rem;
    }

    .disclaimer-content {
        font-size: 0.85rem;
    }

    .header-content {
        padding: 0 0.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-disclaimer h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    main {
        padding: 1rem;
    }

    .disclaimer-container {
        padding: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 1.5rem;
    }
}