/* EBC Offer Page Styles */
.ebc-offer-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.ebc-video-container {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ebc-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.ebc-buy-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.ebc-buy-button:hover {
    background-color: #218838;
}

.ebc-price {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #666;
}

/* New Header Styles */
.ebc-new-header {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    flex: 1;
}

.logo-image {
    max-height: 50px;
    width: auto;
}

.banner-container {
    flex: 3;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #000;
    background-color: #ffc107;
    padding: 1rem 0;
}

.language-dropdown-container {
    flex: 1;
    text-align: right;
}

/* Adjusted Title (Former Banner Text) */
.sub-headline {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

/* Bullet Points */
.bullet-points-container {
    margin-bottom: 2rem;
    margin-left: 100px;
}

.subtext-list {
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
}

.subtext-list li {
    margin-bottom: 0.5rem;
}

/* Form Styles */
.ebc-form-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem; /* Add some padding around the form */
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
    width: 100%;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.subscribe-form .form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
}

.subscribe-form .form-group {
    display: flex;
    flex-direction: column;
}

.subscribe-form .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.subscribe-form .form-group input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.subscribe-form .form-group input:focus {
    border-color: #ffcc00;
    outline: none;
}

.subscribe-form .form-button-container {
    text-align: center;
    margin-top: 1rem;
}

.subscribe-form button {
    background-color: #ffcc00;
    color: #333;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e6b800;
}

/* Optional: display inputs in one row on large screens */
@media (min-width: 768px) {
    .subscribe-form .form-group-row {
        display: flex;
        gap: 1rem;
    }

    .subscribe-form .form-group-row .form-group {
        flex: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .subscribe-form {
        padding: 1.5rem;
    }
}

/* Thumbnail Video Section */
.ebc-thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.thumbnail-video {
    max-width: 120px;
    height: 90px;
    border: none;
    border-radius: 4px;
}

/* Video and Description Layout */
.video-description-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.video-wrapper {
    flex: 1;
    max-width: 50%;
}

.description-wrapper {
    flex: 1;
    max-width: 50%;
}

/* Follow-Up Sales Page Styles */
.follow-up-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.intro-subtext {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
    margin-bottom: 2rem;
}

.video-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
}

.text-content {
    flex: 1;
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
}

.video-content {
    flex: 1;
    text-align: center;
}

.sales-video {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 4px;
}

.video-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.benefit-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 1rem;
}

.benefit-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.flaw-list {
    list-style-type: decimal;
    margin-left: 20px;
    margin-top: 1rem;
}

.flaw-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.sales-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sales-description p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: justify;
}

.sales-cta {
    text-align: center;
    margin-top: 2rem;
}

.test-button {
    background-color: #ff9800; /* Orange color to distinguish it from the green PayPal button */
    margin-top: 1rem;
    display: inline-block;
}

.test-button:hover {
    background-color: #f57c00;
}
/* Styling for the Learn More button */
.learn-more-button {
    display: inline-block;
    padding: 0px 22px;
	height: 32px;
    line-height: 32px;
    background-color: #007bff; /* Blue color to match screenshot */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.learn-more-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
/* Responsive Styles */
@media (max-width: 768px) {
    .ebc-video-container iframe {
        height: 300px;
    }
    
    .ebc-buy-button {
        width: 100%;
    }

    .ebc-new-header {
        padding: 1rem;
    }

    .banner-container {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 1rem;
        white-space: normal;
    }

    .mailchimp-form {
        max-width: 100%;
    }

    .thumbnail-video {
        max-width: 100px;
        height: 75px;
    }

    .video-section {
        flex-direction: column;
        align-items: center;
    }

    .sales-video {
        height: 200px;
    }

    .video-description-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .video-wrapper,
    .description-wrapper {
        max-width: 100%;
    }

    .bullet-points-container {
        margin-left: 50px;
    }

    .sales-description p {
        font-size: 1rem;
    }

    .video-showcase h2 {
        font-size: 1.2rem;
    }

    .ebc-form-container {
        justify-content: center;
    }
}