/* Global Styles */
:root {
    --primary-red: #bf1e1e;
    /* Approximate from image */
    --hover-red: #a01818;
    --primary-blue: #001566;
    /* Deep blue from card */
    --card-glow: rgba(0, 21, 102, 0.5);
    --text-dark: #222;
    --text-grey: #555;
    --bg-white: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.4;
    /* Reduced line height */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    /* Reduced top padding */
}

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 90px;
    /* Increased to prevent overlap */
    margin-top: 20px;
}

.top-subhead {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1rem;
    /* Slightly smaller */
    margin-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    /* Reduced from 2.5rem */
    color: #0d1b2a;
    margin-bottom: 5px;
    line-height: 1.1;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    /* Reduced from 1.5rem */
    color: #333;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Main Content Wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* Increased from 15px */
    margin-bottom: 40px;
    /* Increased from 30px */
}

/* Left Column: Blue Card */
.left-col {
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.blue-card {
    background-color: var(--primary-blue);
    color: white;
    padding: 20px 30px;
    /* Reduced vertical padding */
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--card-glow);
    text-align: center;
    position: relative;
}

/* Fake Image */
/* Fake Image */
.image-wrapper {
    width: 180px;
    /* Increased from 140px */
    height: 180px;
    margin: -90px auto 10px auto;
    /* 50% of height */
    border-radius: 50%;
    background-color: #dcbfa2;
    border: 4px solid #fff;
    overflow: hidden;
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blue-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-list {
    text-align: left;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
    /* Reduced list spacing */
    font-size: 0.9rem;
    line-height: 1.3;
}

.benefit-list li i {
    margin-right: 12px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
    color: #a4c2f4;
}

/* Right Column: Content */
.right-col {
    max-width: 500px;
    width: 100%;
    padding-top: 0;
    text-align: center;
}

.script-head {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    /* Slightly smaller */
    color: #555;
    margin-bottom: 5px;
    /* Tight margin */
    line-height: 1.2;
}

.sales-text {
    color: var(--text-grey);
    margin-bottom: 25px;
    /* Increased from 15px */
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
    padding: 0 10px;
}

/* Form Styles */
.optin-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

@keyframes gentleWiggle {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.cta-button {
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    /* Slightly more compact */
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: gentleWiggle 1.5s ease-in-out infinite;
    text-decoration: none;
    /* remove underline for link */
}

.cta-button:hover {
    background-color: var(--hover-red);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-content i {
    font-size: 20px;
}

.text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-main {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Social Proof */
.social-proof {
    text-align: center;
    margin: 30px 0;
    /* Reduced margin */
}

.social-proof h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #222;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.8;
}

/* Logo visual approximations via text styles */
.logo-item {
    font-size: 1.5rem;
    color: #333;
    user-select: none;
}

.serif {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

.sans-red {
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    color: #cc0000;
    letter-spacing: -2px;
}

.old-english {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.bold-sans {
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    font-size: 1.4rem;
}

/* Footer */
.main-footer {
    background-color: #222;
    color: #999;
    padding: 20px 20px;
    /* Compact footer */
    text-align: center;
    font-size: 0.75rem;
    margin-top: 20px;
}

.main-footer p {
    margin-bottom: 10px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.65rem;
    line-height: 1.4;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        gap: 40px;
    }

    .image-wrapper {
        width: 180px;
        height: 180px;
        margin-top: -90px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .logos {
        gap: 15px;
    }

    .logo-item {
        font-size: 1.2rem;
    }

    .sales-text {
        display: none;
    }
}