
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5faff;
    color: #222;
}
header {
    background: #dfeeff;
    text-align: center;
    padding: 16px;
}
.logo {
    height: 100px;
}
h1, h2 {
    color: #003366;
    margin-bottom: 10px;
}
h3 {
    font-size: 1.2em;
    color: #0055aa;
}
a.cta-button {
    margin: 0 10px;
    background-color: #0055aa;
    color: white;
    padding: 12px 24px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}
.hero {
    background: #eaf3fc;
    padding: 40px 20px;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-text {
    text-align: center;
    max-width: 600px;
}
.hero-img {
    max-width: 400px;
    margin-top: 20px;
}
@media(min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 40px;
    }
    .hero-text {
        text-align: left;
    }
}

.split-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    gap: 30px;
}
.split-section.reverse {
    flex-direction: column-reverse;
}
.text-block, .image-block {
    flex: 1;
    max-width: 600px;
}
.product-img, .testimonial-img {
    width: 100%;
    border-radius: 12px;
}
ul {
    list-style: none;
    padding: 0;
}
ul li::before {
    content: "✔ ";
    color: #009900;
}
@media(min-width: 768px) {
    .split-section, .split-section.reverse {
        flex-direction: row;
        justify-content: space-around;
    }
}

footer {
    background: #dfeeff;
    color: #333;
    text-align: center;
    padding: 15px;
    border-top: 1px solid #ccc;
}
footer a {
    color: #0055aa;
    text-decoration: none;
    margin: 0 10px;
}

.disclaimer-section {
    background-color: #eef4ff;
    color: #444;
    padding: 20px;
    font-size: 0.9em;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #c0d2e4;
}
.payment-note {
    font-size: 0.85em;
    margin-top: 10px;
}

.cta-button.secondary {
    background-color: #008800;
}
