/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(rgba(245, 247, 250, 0.98), rgba(245, 247, 250, 0.98)),
                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;
}

.main-wrapper {
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    margin-bottom: 30px;
}

.top-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.hero-image-container {
    max-width: 100%;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
}

.hero-content {
    text-align: left;
    padding: 20px 0;
}

.pretitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
}

.cta-section {
    margin-top: 30px;
}

.btn-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.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;
}

/* Footer */
.footer-section {
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* 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-modal-submit {
    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-modal-submit:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(231, 76, 60, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .top-headline {
        font-size: 1.5rem;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .pretitle {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        font-size: 1.25rem;
        padding: 15px 35px;
    }
    
    .hero-section {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .main-wrapper {
        padding: 40px 15px;
    }
    
    .top-headline {
        font-size: 1.25rem;
    }
    
    .main-headline {
        font-size: 1.75rem;
    }
    
    .pretitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 12px 30px;
        width: 100%;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
    
    .top-banner {
        padding: 20px 20px;
    }
}