:root {
    --primary-color: #e63946; /* A strong red to draw attention to important parts */
    --primary-hover: #ef233c;
    --bg-color: #ffffff; /* Clean white background */
    --text-color: #1e293b; /* Dark text for readability */
    --text-muted: #64748b;
    --highlight-bg: #f59e0b;
    --highlight-text: #ffffff;
    --success-color: #10b981;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 1rem;
}

header.hero h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

section.content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

blockquote {
    font-style: italic;
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 1.15rem;
    color: var(--text-color);
}

.highlight-block {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin: 2rem 0 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.highlight-block h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

strong {
    color: #0f172a;
    font-weight: 700;
}

ul.timeline, ul.check-list {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
}

ul.timeline li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--text-muted);
    font-size: 1.15rem;
}

ul.check-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.15rem;
}

ul.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.offer-box {
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.offer-box .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.offer-box p {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.cta-container {
    text-align: center;
    margin: 4rem 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
