/* Services Section */
.section--services {
    background-color: #fff;
    padding: 80px 20px;
}

.section--services .section__content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card__header {
    padding: 30px;
    text-align: center;
}

.service-card__header--monitoring {
    background: linear-gradient(135deg, #3679c8 0%, #2a5a9a 100%);
}

.service-card__header--taho {
    background: linear-gradient(135deg, #444444 0%, #333333 100%);
}

.service-card__header--sensors {
    background: linear-gradient(135deg, #5a9c3a 0%, #3d7a1f 100%);
}

.service-icon {
    font-size: 50px;
}

.service-card__body {
    padding: 25px;
}

.service-card__body h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3679c8;
    font-weight: bold;
}

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