.services-overview {
    background: #ffffff;
    padding: clamp(20px, 2vh, 25px) 5vw !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(10px, 1.5vw, 15px);
}

.service-category {
    background: #f8f9fa;
    padding: clamp(12px, 1.5vw, 15px);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: clamp(28px, 3vw, 32px);
    margin-bottom: clamp(5px, 0.8vh, 8px);
}

.service-category h3 {
    font-size: clamp(14px, 2vw, 16px);
    color: #1a1a1a;
    margin-bottom: clamp(5px, 0.8vh, 8px);
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.service-category li {
    padding: 3px 0;
    color: #e74c3c;
    font-size: clamp(12px, 1.5vw, 13px);
    border-bottom: 1px solid #e5e5e5;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-category p {
    font-size: clamp(13px, 1.8vw, 15px);
    color: #666666;
    line-height: 1.6;
}

.capabilities-section {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #ffffff;
    padding: clamp(20px, 2.5vh, 25px) 5vw !important;
}

.capabilities-section h2 {
    color: #ffffff;
    margin-bottom: clamp(10px, 1.5vh, 12px) !important;
    font-size: clamp(20px, 3vw, 24px) !important;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(10px, 1.5vw, 12px);
}

.capability-item {
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(10px, 1.5vw, 12px);
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.capability-item h4 {
    font-size: clamp(12px, 1.8vw, 14px);
    margin-bottom: clamp(3px, 0.5vh, 5px);
    font-weight: 600;
}

.capability-item p {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
}

.cta-section {
    background: #f8f9fa;
    text-align: center;
    padding: clamp(20px, 2.5vh, 25px) 5vw !important;
}

.cta-section h2 {
    margin-bottom: clamp(8px, 1vh, 10px);
    font-size: clamp(18px, 2.8vw, 22px) !important;
}

.cta-section p {
    font-size: clamp(13px, 1.8vw, 14px);
    color: #666666;
    margin-bottom: clamp(10px, 1.5vh, 12px);
}

.cta-button {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 14px) clamp(25px, 4vw, 40px);
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #a93226 0%, #c0392b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
