.dmp * {
    box-sizing: border-box;
}

.dmp .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.dmp .section {
    padding: 80px 0;
}

.dm-intro {
    background: #fff;
}

.dm-intro .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dm-intro .text-content h2 {
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.dm-intro .text-content p {
    margin-bottom: 20px;
    color: #5a6c7d;
}

.dm-intro .experience-badge {
    background: #0b9bb6;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-top: 20px;
}

.dm-intro .image-content {
    text-align: center;
}

.dm-intro .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dm-featured-services {
    background: #f8f9fa;
}

.dm-featured-services h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 600;
}

.dm-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dm-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dm-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.dm-service-card .icon {
    width: 70px;
    height: 70px;
    background: #0b9bb6;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dm-service-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.dm-service-card p {
    color: #6c757d;
    line-height: 1.6;
}

.dm-cta {
    background: linear-gradient(rgba(11, 155, 182, 0.9), rgba(11, 155, 182, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ddd" width="1200" height="600"/><text x="50%" y="50%" fill="%23999" text-anchor="middle" dy=".3em">Background Image</text></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.dm-cta h2 {
    margin-bottom: 20px;
    font-weight: 700;
}

.dm-cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dm-cta .btn {
    background: white;
    color: #0b9bb6;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.dm-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.dm-why-choose {
    background: white;
}

.dm-why-choose .intro-text {
    text-align: left;
    margin-bottom: 60px;
}

.dm-why-choose .intro-text h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.dm-why-choose .intro-text p {
    color: #6c757d;
    max-width: 600px;
}

.dm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.dm-feature-box {
    text-align: left;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dm-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.dm-feature-box .icon {
    width: 50px;
    height: 50px;
    background: #0b9bb6;
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    float: left;
    margin-right: 15px;
}

.dm-feature-box h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 0;
}

.dm-feature-box p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.dm-top-services {
    background: #f8f9fa;
}

.dm-top-services h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 600;
}

.dm-top-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.dm-top-service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.dm-top-service-card:hover {
    transform: translateY(-3px);
}

.dm-top-service-card .icon {
    width: 60px;
    height: 60px;
    background: #0b9bb6;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dm-top-service-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.dm-top-service-card p {
    color: #6c757d;
}

.dm-testimonials {
    background: white;
    text-align: center;
}

.dm-testimonials h2 {
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 600;
}

.dm-testimonials .testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.dm-testimonial {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 0 15px;
}

.dm-testimonial .client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.dm-testimonial .quote {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.6;
}

.dm-testimonial .client-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.dm-testimonial .client-role {
    color: #0b9bb6;
    font-weight: 500;
}

.dm-quote-form {
    background: linear-gradient(135deg, #0b9bb6, #089bb0);
    color: white;
}

.dm-quote-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.dm-quote-form .form-intro {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

.dm-quote-form form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

.dm-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dm-quote-form input,
.dm-quote-form select {
    padding: 18px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    color: #333;
    width: 100%;
}

.dm-quote-form input:focus,
.dm-quote-form select:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.3);
}

.dm-quote-form .submit-btn {
    background: white;
    color: #0b9bb6;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
}

.dm-quote-form .submit-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .dmp .container {
        padding: 0 15px;
    }
    
    .dmp .section {
        padding: 60px 0;
    }
    
    .dm-intro .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .dm-services-grid {
        grid-template-columns: 1fr;
    }
    
    .dm-features-grid {
        grid-template-columns: 1fr;
    }
    
    .dm-quote-form .form-row {
        grid-template-columns: 1fr;
    }
}