/* --- Basic Setup & Variables --- */
:root {
    --bg-dark: #120202; /* Darker red/black for background */
    --card-bg: #2b0808; /* Slightly lighter red/black for cards */
    --text-light: #ffffff;
    --text-secondary: #ffc4c4; /* Lighter red for secondary text */
    --primary-red: #ff0000; /* Bright red for primary accents */
    --accent-orange: #ffa500; /* Orange for specific highlights */
    --button-gradient-start: #ff4500; /* Orange-red gradient start */
    --button-gradient-end: #cc0000;   /* Darker red gradient end */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.3rem;
    color: var(--accent-orange); /* Orange for secondary headings */
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 350px;
}

.btn-primary {
    color: white;
    background: linear-gradient(90deg, var(--button-gradient-start), var(--button-gradient-end));
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); /* Red shadow */
}

.btn-secondary { /* For the plan cards */
    color: white;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-red)); /* Orange to red gradient */
}


/* --- Sections --- */
section, header {
    padding: 40px 0;
    text-align: center;
}

/* --- Hero Section --- */
.hero h1 {
    color: var(--text-light);
}

.hero p {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto 2rem auto;
}

/* --- Features & Job Features Section --- */
.features ul, .job-features ul {
    text-align: left;
    display: inline-block; /* Aligns the list block in the center */
    margin-top: 1rem;
}

.features li, .job-features li {
    padding-left: 1.5rem;
    position: relative;
}

.features li::before, .job-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange); /* Orange checkmarks */
    font-weight: bold;
}


/* --- Plans Section --- */
.plan-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    border: 1px solid #4a0f0f; /* Darker red border */
}

.plan-card ul {
    margin: 20px 0;
}

.plan-card li {
    font-size: 0.95rem;
}

.plan-card .roi {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* --- Flyers & Images --- */
.flyer-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.flyers .section-title {
    margin-bottom: 2rem;
}

/* --- Final CTA & Footer --- */
.final-cta p {
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #888; /* Keeping a neutral grey for footer text */
    font-size: 0.9rem;
}