.ddw-hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff !important;
}
.ddw-hero-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    line-height: 1.1 !important;
}
.ddw-hero-subtitle {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    opacity: 0.9 !important;
    margin-bottom: 40px !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.ddw-btn-primary {
    background: #ffffff !important;
    color: #2563eb !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 1.1rem !important;
}

.ddw-section {
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.ddw-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.ddw-section-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
}

.ddw-carousel-container {
    position: relative;
    overflow: hidden;
}
.ddw-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.ddw-carousel::-webkit-scrollbar { display: none; }

.ddw-card {
    flex: 0 0 300px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s ease;
}
.ddw-card:hover { transform: translateY(-10px); }

.ddw-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.ddw-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}
.ddw-card h3 { color: white !important; font-size: 1.4rem !important; font-weight: 700 !important; margin-bottom: 5px !important; }
.ddw-card p { color: rgba(255,255,255,0.9) !important; font-size: 0.9rem !important; }

.ddw-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}
