/* --- Base Styles & Reset --- */
:root {
    --primary-color: #007bff; /* Blue - adjust as needed */
    --secondary-color: #f8ac33; /* Orange/Yellow for CTAs */
    --dark-color: #333;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --headline-font: 'Arial Black', Gadget, sans-serif; /* More impactful headline font */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #fff; /* White background */
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Utility & Container --- */
.container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* --- Header / Hero Section --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background-image.jpg') no-repeat center center/cover; /* Optional: Add a background image */
    background-color: var(--dark-color); /* Fallback color */
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
}

.hero .main-headline {
    font-family: var(--headline-font);
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero .main-headline span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    font-family: var(--font-family);
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}


.hero .sub-headline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

/* --- Content Sections --- */
.content-section {
    padding: 40px 0;
}

h2 {
    font-family: var(--headline-font);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

p {
    margin-bottom: 1.2rem;
}

ul {
    list-style: none; /* Remove default */
    padding-left: 0; /* Remove default padding */
    margin-bottom: 1.5rem;
}

ul li {
    padding-left: 30px; /* Space for icon */
    position: relative;
    margin-bottom: 0.8rem;
}

/* Icons for lists (Simple text-based) */
.point-icon {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2em;
    line-height: 1;
}
.pain-points .point-icon { color: var(--danger-color); }
.how-it-helps .point-icon { color: var(--success-color); }
.closing ul .point-icon { color: var(--success-color); }


blockquote {
    border-left: 5px solid var(--primary-color);
    margin: 20px 0;
    padding: 15px 20px;
    background-color: #f1f1f1;
    font-style: italic;
    font-size: 1.1rem;
}

/* --- Specific Section Styling --- */
.solution-intro .solution-headline {
    font-size: 2.5rem;
    border-bottom: none;
    margin-bottom: 5px;
}
.solution-intro .product-name {
    color: var(--success-color);
    font-size: 3rem; /* Make product name stand out */
}
.solution-intro .solution-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
}
.highlight-box {
    background-color: var(--light-color);
    border: 1px solid #ddd;
    border-left: 5px solid var(--success-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
    text-align: center;
}
.ownership-emphasis {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--success-color);
    margin-top: 15px;
    margin-bottom: 10px !important; /* Override default p margin */
}

.cta-break {
    text-align: center;
    margin: 30px 0;
}

/* Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.reseller-feature .feature-icon { /* Special icon color for resell rights */
    color: var(--success-color);
}
.reseller-feature { /* Highlight resell rights */
    border-top: 5px solid var(--success-color);
}

/* Objections Section */
.objections .objection-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.objections strong { /* Make question stand out */
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

/* Closing Section */
.warning-box {
    background-color: #fff3cd; /* Light yellow warning */
    border: 1px solid #ffeeba;
    border-left: 5px solid #ffc107; /* Yellow border */
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.final-cta-headline {
    text-align: center;
    font-size: 1.8rem;
    margin: 30px 0 20px 0;
    color: var(--dark-color);
}

.ps-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

.ps {
    font-size: 0.95rem;
    font-style: italic;
    color: #555;
}

/* --- Call to Action Buttons --- */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff; /* White text on button */
    padding: 15px 35px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 10px 0; /* Add some default margin */
}

.cta-button:hover {
    background-color: #e09920; /* Darker shade of secondary */
    transform: scale(1.03);
    text-decoration: none;
    color: #fff;
}

.hero-cta { /* Slightly larger main CTA */
    padding: 18px 40px;
    font-size: 1.4rem;
}
.final-cta { /* Make final main CTA stand out */
    background-color: var(--success-color); /* Green for final action */
    display: block; /* Make it full width */
    width: 80%;
    max-width: 400px;
    margin: 20px auto; /* Center it */
}
.final-cta:hover {
    background-color: #218838; /* Darker green */
}

.ps-cta {
    font-size: 1.1rem;
    padding: 12px 25px;
}


/* --- Footer --- */
footer {
    background-color: var(--dark-color);
    color: #ccc;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #fff; /* White links in footer */
}

footer a:hover {
    color: var(--secondary-color);
}

footer .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 700px;
    margin: 10px auto;
    line-height: 1.4;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .hero .main-headline {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .feature-grid {
        grid-template-columns: 1fr; /* Stack features on smaller screens */
    }
    .final-cta {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero .main-headline {
        font-size: 1.8rem;
    }
     .hero .sub-headline {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.5rem;
    }
     h3 {
        font-size: 1.2rem;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    .hero-cta {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    .ownership-emphasis {
        font-size: 1.5rem;
    }
    .solution-intro .product-name {
        font-size: 2.2rem;
    }
}