:root {
    --primary-color: #ff69b4;
    --secondary-color: #f8b4d9;
    --background-color: #fffafc;
    --text-color: #5d3a3a;
    --white-color: #ffffff;
    --dark-color: #3d2a2a;
    --font-heading: 'Pacifico', cursive;
    --font-body: 'Montserrat', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    text-align: center;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), #ff8acb);
    color: var(--white-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.6);
    animation-play-state: paused;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(255, 250, 252, 0.8), rgba(255, 250, 252, 0.8)), url('https://images.unsplash.com/photo-1587314168485-3236d6710814?q=80&w=1978&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--dark-color);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 10px;
}

/* Value Prop Section */
.value-prop {
    background-color: var(--white-color);
}

.value-prop p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    font-style: italic;
}

/* Content Section */
.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Bonuses Section */
.bonuses {
    background-color: var(--secondary-color);
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--background-color);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-color);
}

.stars {
    color: #ffc107;
    margin-bottom: 10px;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.guarantee h2 {
    color: var(--white-color);
}

.guarantee-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: var(--white-color);
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.final-cta h2 {
    color: var(--white-color);
}

.final-cta .btn {
     background: var(--white-color);
     color: var(--primary-color);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 40px 0;
}

.footer .btn {
    background: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: none;
    animation: none;
}

.footer p {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}
