

body{
    background: linear-gradient(135deg, #3498db 0%, #e9ecef 100%);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
    margin-top: -20%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
}

.hero-text-container {

    padding: 60px 20px;
    text-align: center;
}

.hero-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text-content h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text-content p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hero-cta {
    margin-top: 30px;
}

.hero-cta .btn {
    padding: 12px 30px;
    font-size: 1.1em;
    margin: 0 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.hero-cta .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-text-content h1 {
        font-size: 1.8em;
    }
    
    .hero-text-content p {
        font-size: 1em;
    }
    
    .hero-text-container {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 250px;
    }
    
    .hero-text-content h1 {
        font-size: 1.5em;
    }
    
    .hero-cta .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}