/* Home section styles */
.home-section {
    min-height: 100vh;
    /* background: linear-gradient(#07d0ac, #41630e); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
    /* background-image: url(../images/ed1_fiecev.jpg); */
}

.home-content {
    max-width: 800px;
}

.home-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 10rem; /* Add margin to move form down */
    line-height: 1.2;
    color: #0e4263;
}

.home-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #114c72;
}

.home-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.8;
    color: #0e4263;
}

.home-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.home-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2ebaa9;
    color: #0e4263;
}

.btn-secondary {
    background-color: #075c72;
    border: 3px solid #075c72;
    color: #2ebaa9;
}

.home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px #0e4263;
}

@media (max-width: 768px) {
    .home-title {
        font-size: 3rem;
    }
    
    .home-subtitle {
        font-size: 1.2rem;
    }
    
    .home-buttons {
        flex-direction: column;
    }
    
    .home-btn {
        width: 100%;
    }
}