/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the thumb on hover */
}

/* For Firefox */
.scrollable-element {
    scrollbar-width: thin; /* Set the scrollbar to thin */
    scrollbar-color: #888 #f1f1f1; /* Thumb color and track color */
}
.sme-service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.sme-service-hero h1 {
    font-size: 2.5em;
    margin: 0 0 20px 0;
}

.sme-service-hero p {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.cta-section {
    background: #667eea;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

.cta-section h3 {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sme-service-hero {
        padding: 40px 20px;
    }
    
    .sme-service-hero h1 {
        font-size: 2em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}