/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    min-height: 100vh;
    color: #fff;
    line-height: 1.6;
}

.page-wrapper {
    padding: 60px 20px;
    min-height: 100vh;
}

/* Top Section */
.top-section {
    margin-bottom: 40px;
}

.main-headline {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Bottom Section */
.bottom-section {
    margin-top: 40px;
}

.secondary-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.description-text {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.btn-primary-cta,
.btn-secondary-cta {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 50px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.btn-primary-cta:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: white;
}

.btn-secondary-cta {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.btn-secondary-cta:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
    color: white;
}

/* Privacy Notice */
.privacy-notice {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-style: italic;
    margin-top: 15px;
}

/* Image Container */
.image-container {
    padding: 20px;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Footer Section */
.footer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.member-link {
    font-size: 1rem;
}

.member-link a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.member-link a:hover {
    color: #ffed4e;
    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, #ff6b35 0%, #f7931e 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;
    background: #fff;
}

.form-label {
    font-weight: 600;
    color: #333;
    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: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-modal-submit {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 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(76, 175, 80, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modal-submit:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(76, 175, 80, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }
    
    .secondary-headline {
        font-size: 1.75rem;
    }
    
    .description-text {
        font-size: 1.1rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        font-size: 1.25rem;
        padding: 15px 35px;
    }
    
    .page-wrapper {
        padding: 40px 15px;
    }
}

@media (max-width: 576px) {
    .main-headline {
        font-size: 1.75rem;
    }
    
    .secondary-headline {
        font-size: 1.5rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        font-size: 1.1rem;
        padding: 12px 30px;
        width: 100%;
    }
    
    .page-wrapper {
        padding: 30px 15px;
    }
}