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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 3em 1.5em;
}

h1, h2, h3 {
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4em 1.5em;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 1em auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #222;
    color: white;
    padding: 0.75em 1.5em;
    font-size: 1.1em;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #000;
}

.download-button {
    display: inline-block;
    background-color: #0077cc;
    color: white;
    padding: 0.75em 1.5em;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1em;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #005fa3;
}

/* Freebie Section */
.freebie {
    background-color: #eef5f7;
    text-align: center;
}

.freebie p {
    max-width: 600px;
    margin: auto;
    font-size: 1.1em;
}

/* What You Get Section */
.what-you-get {
    background-color: #f8f8f8;
}

.what-you-get h2 {
    text-align: center;
}

.what-you-get ul {
    max-width: 700px;
    margin: auto;
    font-size: 1.1em;
    list-style-type: none;
}

.what-you-get li {
    margin-bottom: 0.5em;
}

/* Problem & Solution Table */
.problem-solution h2 {
    text-align: center;
    margin-bottom: 1em;
}

.problem-solution table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

.problem-solution th {
    background-color: #eee;
    padding: 0.75em;
    text-align: left;
}

.problem-solution td {
    padding: 0.75em;
    border-bottom: 1px solid #eee;
}

.problem-solution .alt-row {
    background-color: #fafafa;
}

/* FAQ Section */
.faq {
    background-color: #f8f8f8;
}

.faq h2 {
    text-align: center;
}

.faq ul {
    max-width: 700px;
    list-style: none;
    margin: auto;
    padding: 0;
    font-size: 1.05em;
}

.faq li {
    margin-bottom: 1.5em;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 2.5em 1.5em;
}

.final-cta p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

/* Disclaimer Section */
.disclaimer {
    text-align: center;
    font-size: 0.85em;
    color: #666;
    padding: 2em 1.5em;
    background-color: #f9f9f9;
}

/* Support Section */
.support {
    text-align: center;
    font-size: 1em;
    color: #555;
    padding: 2em 1.5em;
}

.support a {
    color: #0077cc;
    text-decoration: underline;
}

.support a:hover {
    color: #005fa3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p, .freebie p {
        font-size: 1em;
    }
    
    .cta-button, .download-button {
        font-size: 1em;
        padding: 0.6em 1.2em;
    }
    
    .what-you-get ul, .faq ul {
        font-size: 1em;
    }
    
    section {
        padding: 2em 1em;
    }
}
