/* CSS Reset and Variables */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'DM Serif Display', serif;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-black: #1a1a1a;
    --color-blue: #0056b3;
    --color-accent: #d4a373;
    /* Gold/Beige accent typical of feminine brands */
    --color-bg: #ffffff;
    --color-bg-alt: #f4f4f4;
    --color-cta: #27ae60;
    /* Green CTA */
    --max-width: 500px;
    /* Narrower for mobile feel */
}

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

body {
    font-family: var(--font-primary);
    background-color: #ededed;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    background-color: var(--color-bg);
    min-height: 100vh;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    margin-bottom: 40px;
}

.headline {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 20px;
    text-align: left;
    /* Image often has aligned text */
}

.headline strong {
    color: var(--color-accent);
}

.divider {
    width: 50px;
    height: 3px;
    background-color: var(--color-black);
    margin: 0 0 20px 0;
}

.body-text {
    margin-bottom: 15px;
    color: var(--color-text);
    font-size: 1rem;
}

.bullet-list,
.features-list {
    list-style: none;
    margin-top: 20px;
}

.bullet-list li,
.features-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.bullet-list li::before {
    content: "•";
    color: var(--color-black);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Sections */
.section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-black);
    border-left: 4px solid var(--color-black);
    padding-left: 15px;
}

.problem-agitation,
.solution-offer,
.testimonials,
.about-author {
    margin-bottom: 50px;
    padding: 20px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
}

.solution-offer {
    background-color: #fff;
    border: 1px solid #eee;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    gap: 15px;
}

.testimonial-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: bold;
    font-size: 0.8rem;
    text-align: right;
    display: block;
}

.fake-image-placeholder {
    width: 100%;
    height: 150px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.8rem;
    border-radius: 4px;
}

/* Author */
.author-content {
    text-align: center;
}

.author-image-placeholder {
    width: 150px;
    height: 150px;
    background-color: #ccc;
    border-radius: 50%;
    /* Circle */
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA */
.cta-section {
    text-align: center;
    background-color: var(--color-black);
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.price-text {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ccc;
}

.strike {
    text-decoration: line-through;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-cta);
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    width: 100%;
    font-size: 1.1rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.footer a {
    color: var(--color-text-light);
    text-decoration: none;
}