/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Main Content Section */
.main-content {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    padding: 60px 20px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: left;
}

.hero-image-container {
    max-width: 100%;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pre-headline {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

.main-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.btn-hero-cta {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    color: white;
}

.description-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.description-text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
}

.redirect-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
}

.section-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 40px;
}

.benefit-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    max-width: 150px;
    margin: 0 auto;
}

.benefit-icon img {
    border-radius: 8px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.host-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.host-image-container {
    max-width: 300px;
    margin: 0 auto;
}

.host-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
}

.cta-subheadline {
    font-size: 1.25rem;
    color: #555;
    font-weight: 600;
}

.btn-final-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-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-final-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;
}

/* Footer */
.footer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.copyright {
    font-size: 0.95rem;
    color: #666;
}

/* 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, #1e3c72 0%, #2a5298 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: #1e3c72;
    box-shadow: 0 0 0 0.2rem rgba(30, 60, 114, 0.25);
}

.btn-modal-submit {
    background: linear-gradient(135deg, #27ae60 0%, #229954 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(39, 174, 96, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modal-submit:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(39, 174, 96, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2.25rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
    
    .btn-hero-cta,
    .btn-final-cta {
        font-size: 1.25rem;
        padding: 15px 35px;
    }
}

@media (max-width: 576px) {
    .main-headline {
        font-size: 1.75rem;
    }
    
    .section-headline {
        font-size: 1.5rem;
    }
    
    .btn-hero-cta,
    .btn-final-cta {
        font-size: 1.1rem;
        padding: 12px 30px;
        width: 100%;
    }
    
    .description-box,
    .about-section,
    .final-cta-section {
        padding: 25px 20px;
    }
    
    .main-content {
        padding: 40px 15px;
    }
    
    .hero-section {
        padding: 40px 25px;
    }
}