/* Services Section Styles */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.technical-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.technical-service-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.technical-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.technical-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.technical-service-title {
    color: #f7d046;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.technical-service-description {
    color: #e0e0e0;
    line-height: 1.6;
}

.support-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-service-card {
    background-color: #1a1a1a;
    border: 1px solid #f7d046;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.support-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.support-service-title {
    color: #f7d046;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.support-service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #f7d046;
}

.support-service-description {
    color: #e0e0e0;
    line-height: 1.6;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .technical-services,
    .support-services {
        grid-template-columns: 1fr;
    }
}
