/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-bar {
    display: flex;
    justify-content: center;
}

.search-bar input {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid #4CAF50;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar input:focus {
    border-color: #45a049;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    color: #ffffff !important;
}

/* Bonus Section */
.bonus-section {
    margin-bottom: 60px;
}

.bonus-item {
    display: flex;
    align-items: center;
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bonus-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 30px;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
}

.bonus-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c !important;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bonus-price {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.old-price {
    color: #666;
    margin-right: 10px;
}

.old-price del {
    text-decoration: line-through;
}

.new-price {
    color: #e74c3c !important;
    font-weight: 700;
    font-size: 1.3rem;
}

.bonus-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Price Section */
.price-section {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    padding: 40px 20px;
    border-radius: 20px;
    color: white;
}

.final-price {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-label {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 10px;
    color: #ffffff;
}

.old-final-price {
    color: #ffcccb;
    margin: 0 10px;
}

.new-final-price {
    color: #fff !important;
    font-size: 4rem;
    margin: 0 10px;
}

.new-final-price sup {
    font-size: 2rem;
    vertical-align: top;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefits-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    background: #3498db;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #2980b9;
}

.faq-answer {
    padding: 20px;
    background: #f8f9fa;
    display: none;
}

.faq-answer p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid #bdc3c7;
}

.disclaimer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .final-price {
        font-size: 2rem;
    }
    
    .new-final-price {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .final-price {
        font-size: 1.5rem;
    }
    
    .new-final-price {
        font-size: 2rem;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .bonus-item {
        padding: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: #2980b9;
    transform: scale(1.1);
}

/* FAQ Active State */
.faq-question.active {
    background: #2980b9 !important;
}

/* Pulse animation for price */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

