:root {
    --primary-color: #2C3E50;
    /* Deep Blue/Gray */
    --accent-color: #3498DB;
    /* Calming Blue */
    --accent-hover: #2980B9;
    --bg-color: #F9FAFB;
    /* Very soft gray/white */
    --card-bg: #FFFFFF;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-text-small {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-book-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-book-image:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Section General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    background-color: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #4a5568;
}

.story-content p {
    margin-bottom: 24px;
}

/* Transformation Section */
.transformation-section {
    background-color: var(--bg-color);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.transformation-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.transformation-card h3 {
    margin-bottom: 16px;
    color: var(--accent-color);
}

/* Content Section */
.content-section {
    background-color: #fff;
}

.book-features-list {
    max-width: 800px;
    margin: 0 auto;
}

.book-features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.book-features-list .icon {
    font-size: 2rem;
    background: #e0f2fe;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-color);
    overflow: hidden;
    /* Hide scrollbar */
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes we duplicate content or have enough width */
}

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    width: 300px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.name {
    font-weight: 600;
    font-size: 0.95rem;
}

.comment {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

/* Guarantee Section */
.guarantee-section {
    background-color: var(--bg-color);
    text-align: center;
}

.guarantee-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.guarantee-box h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, #fff, #f0f4f8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    background-color: #fcfdfe;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.features {
    text-align: left;
    margin-bottom: 32px;
    display: inline-block;
}

.features li {
    margin-bottom: 12px;
    color: var(--text-light);
}

.buy-button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    /* Green for buy */
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #219150;
}

.buy-button.outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.buy-button.outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
        /* Image on top on mobile? Or keep bottom? Prompt says "Image of ebook to the side, smaller". Usually on mobile it goes top or bottom. Let's put it top for impact or bottom for flow. Let's try top (order -1) so they see the book immediately. */
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* New Content Styles */
.highlight-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 1.05rem;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.transformation-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    font-weight: 300;
}