@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --secondary: #eef7ff;
    --accent: #ffae00;
    --text: #333;
    --text-light: #666;
    --bg: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-section {
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4::before {
    content: 'Q:';
    font-weight: 700;
    color: var(--accent);
}

.top-bar {
    background: #0d2c5c;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar .bar-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .top-bar .bar-content {
        gap: 10px;
    }

    .top-bar span {
        font-size: 0.7rem;
    }
}

header {
    text-align: left;
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.header-content {
    flex: 1;
}

.header-image-container {
    flex: 1;
    max-width: 450px;
}

.header-image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.badge {
    display: inline-block;
    background: #eef7ff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid var(--primary);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0d2c5c;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-section {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow);
    background: #fff;
}

.hero-background {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.product-img {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.02);
}

.usage-img {
    width: 100%;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-cta {
    margin-top: 25px;
    text-align: center;
}

.btn-sm {
    padding: 12px 30px;
    font-size: 1rem;
    background: var(--accent);
    border-bottom: 3px solid #d49100;
}

.btn-sm:hover {
    background: #ffc107;
}

.content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content h2 {
    color: var(--primary);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.cta-container {
    text-align: center;
    padding: 40px 20px;
}

.btn {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    border-bottom: 4px solid #1e7e34;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

.btn:active {
    transform: translateY(1px);
    border-bottom: 0;
}

.shipping-label {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

footer {
    padding: 40px 20px;
    background: #f1f1f1;
    color: #888;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 50px;
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        height: 250px;
    }

    .content {
        padding: 25px;
    }

    .btn {
        width: 100%;
        font-size: 1.2rem;
    }
}