/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://s3.amazonaws.com/wbm.websbest/beach-418742_1920_Compressed.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.main-wrapper {
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thankyou-wrapper {
    padding: 40px 20px;
    min-height: 100vh;
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.logo-img {
    max-width: 250px;
    height: auto;
}

/* Content Card */
.content-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Main Headline */
.main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 25px;
}

.main-headline .highlight {
    color: #e74c3c;
    font-weight: 700;
}

/* Sub Headline */
.sub-headline {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
    color: white;
}

/* Member Link */
.member-link {
    font-size: 1rem;
    color: #666;
    margin-top: 30px;
}

.member-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.member-link a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Footer Section */
.footer-section {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.powered-by {
    margin-top: 20px;
}

.clickfunnels-badge {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.clickfunnels-badge:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }
    
    .sub-headline {
        font-size: 1.1rem;
    }
    
    .content-card {
        padding: 35px 25px;
    }
    
    .btn-cta {
        font-size: 1.25rem;
        padding: 15px 35px;
    }
}

@media (max-width: 576px) {
    .main-headline {
        font-size: 1.75rem;
    }
    
    .sub-headline {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 12px 30px;
        width: 100%;
    }
    
    .main-wrapper {
        padding: 30px 15px;
    }
}

/* Thank You Page Specific Styles */
.thankyou-content {
    max-width: 100%;
}

.video-container {
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.article-content {
    margin-top: 40px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #444;
}

.article-content .lead-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-headline {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 50px 0 30px 0;
    text-align: center;
}

.member-login-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.member-login-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    padding: 20px 25px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px 25px;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

.btn-cta-modal {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-modal:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(231, 76, 60, 0.5);
}