/* 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.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.page-wrapper {
    padding: 60px 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);
}

/* Images Column */
.images-column {
    display: flex;
    flex-direction: column;
}

/* Content Column */
.content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Image Boxes */
.image-box {
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Headline */
.main-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* Sub Headline */
.sub-headline {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

/* 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;
}

/* 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;
}

/* 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) {
    .images-column {
        margin-bottom: 30px;
    }
    
    .content-column {
        text-align: center;
    }
    
    .main-headline {
        text-align: center;
    }
    
    .sub-headline {
        text-align: center;
    }
}

@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;
    }
    
    .image-box {
        height: 150px;
    }
}

@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%;
    }
    
    .page-wrapper {
        padding: 30px 15px;
    }
    
    .image-box {
        height: 120px;
    }
}