body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/ddp_background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-bottom: 5px solid #ffcc00;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}

.main-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #444;
    font-size: 26px;
    border-left: 5px solid #ffcc00;
    padding-left: 15px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Carusel modern */
.fade-carousel {
position: relative;
width: 100%;
max-width: 1000px;
height: 400px;
margin: 30px auto;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fade-carousel .slide {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.fade-carousel .slide.active {
opacity: 1;
z-index: 1;
}

.fade-carousel img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}

/* Butoane */
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.85);
border: none;
font-size: 30px;
padding: 8px 14px;
cursor: pointer;
border-radius: 50%;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
transition: background 0.3s;
z-index: 2;
}

.carousel-btn:hover {
background: rgba(255, 255, 255, 1);
}

.carousel-btn.prev {
left: 10px;
}

.carousel-btn.next {
right: 10px;
}

@media (max-width: 768px) {
.fade-carousel {
height: 250px;
}
}


/* Secțiunea de formular */
.form-section {
    background: #ffcc00;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.form-section h2 {
    color: #222;
    font-size: 24px;
    margin-bottom: 15px;
}

.form-section p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #222;
    color: #ffcc00;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #444;
}




@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}