/* OV-Maand Banner Styling */
.ov-maand-container {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    padding: 30px 0px;
    background: white;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(47, 113, 184, 0.1);
    border: 1px solid rgba(47, 113, 184, 0.1);
    z-index: 10;
}

.ov-maand-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2f71b8, #4CAF50);
}

.ov-maand-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.ov-maand-logo {
    flex: 0 0 auto;
    max-width: 300px;
}

.ov-maand-image {
    width: 100%;
    height: auto;
    display: block;
}

.ov-maand-text {
    flex: 1 1 auto;
    max-width: 600px;
}

.ov-maand-title {
    font-size: 28px;
    color: #2f71b8;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.ov-maand-subtitle {
    font-size: 22px;
    color: #4CAF50;
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-weight: 500;
}

.ov-maand-details {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.ov-maand-button {
    flex: 0 0 auto;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
}

.ov-maand-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
    background: #45a049;
}

.ov-maand-button i {
    font-size: 20px;
}

/* Responsive styling voor OV-Maand banner */
@media (max-width: 1200px) {
    .ov-maand-content {
        padding: 0 20px;
    }
    
    .ov-maand-title {
        font-size: 24px;
    }
    
    .ov-maand-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .ov-maand-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ov-maand-logo {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .ov-maand-text {
        max-width: 100%;
    }
    
    .ov-maand-button {
        width: 100%;
        justify-content: center;
    }
}
