/* Services Page Specific Styles */

/* Hero section */
/* Services hero now uses .hero-section .hero-padding-sm from styles.css */

.service-overview {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.service-overview p {
    margin-top: 15px;
}

/* Service grid layout */
.service-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    padding: 40px !important;
}

.service-item {
    border: 1px solid #e0e0e0 !important;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
    text-align: center !important;
    transition: transform 0.3s !important;
    background: #fff !important;
}

.service-item:hover {
    transform: scale(1.05) !important;
}

.service-item img {
    max-width: 100% !important;
    height: auto !important;
}

.service-item h3 {
    margin: 15px 0 10px !important;
    color: #333 !important;
}

/* Partner section */
.services-partner-section {
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    margin-top: 20px;
}

.services-partner-section p {
    max-width: 800px;
    margin: 20px auto;
}
