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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D5016;
    background-color: #F5F5DC;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #A8DADC 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: #7FB069;
    position: relative;
}

.subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* eBook Showcase */
.ebook-showcase {
    padding: 80px 0;
    background: #F5F5DC;
}

.carousel-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.1);
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 8px;
    background-color: #A8DADC;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #7FB069;
    transform: scale(1.2);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #A8DADC 0%, #F1C0C0 100%);
}

.benefits h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 60px;
    color: #2D5016;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.benefit-icon {
    margin-right: 20px;
    font-size: 24px;
    color: #7FB069;
    min-width: 40px;
}

.benefit-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background: #F5F5DC;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #F1C0C0;
    margin-bottom: 30px;
}

blockquote {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2D5016;
}

cite {
    font-size: 1.2rem;
    font-weight: 600;
    color: #7FB069;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #7FB069 0%, #A8DADC 100%);
    color: white;
}

.bonus-header {
    text-align: center;
    margin-bottom: 60px;
}

.bonus-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.bonus-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.bonus-icon {
    margin-right: 15px;
    font-size: 20px;
    color: #F1C0C0;
    min-width: 30px;
}

.bonus-item p {
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #F1C0C0 0%, #F5F5DC 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: #2D5016;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7FB069 0%, #2D5016 100%);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(127, 176, 105, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(127, 176, 105, 0.4);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    color: #2D5016;
}

.guarantee i {
    color: #7FB069;
    font-size: 1.2rem;
}

/* Author Bio Section */
.author-bio {
    padding: 60px 0;
    background: #F5F5DC;
}

.bio-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.bio-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2D5016;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Authority Section */
.authority {
    padding: 80px 0;
    background: linear-gradient(135deg, #A8DADC 0%, #F5F5DC 100%);
    text-align: center;
}

.authority h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 60px;
    color: #2D5016;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.authority-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease;
}

.authority-item:hover {
    transform: translateY(-5px);
}

.authority-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.authority-item h4 {
    padding: 20px;
    font-size: 1.1rem;
    color: #2D5016;
    line-height: 1.4;
}

.authority-caption {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #2D5016;
    color: white;
    text-align: center;
}

.contact h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    color: #7FB069;
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .benefits-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .authority-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .benefit-item,
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon,
    .bonus-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero,
    .benefits,
    .bonus,
    .cta,
    .authority {
        padding: 50px 0;
    }
    
    .carousel-dots {
        margin-top: 20px;
    }
    
    .dot {
        height: 12px;
        width: 12px;
        margin: 0 5px;
    }
}

