/* Equipment Catalog Button */
.equipment-button-container {
    margin: 20px 0;
    text-align: center;
    padding: 0 15px;
}

.equipment-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2ecc71;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(46, 204, 113, 0.2);
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.equipment-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.equipment-button i {
    font-size: 18px;
}

/* Services Grid */
.services-grid {
    padding: 20px 0;
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    color: #2ecc71;
    font-size: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.service-features li:before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
}

.service-action {
    margin-top: auto;
    padding-top: 20px;
}

.service-action .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

/* Service Benefits */
.service-benefits {
    padding: 40px 0;
    background: #f9f9f9;
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    padding: 0 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.benefit-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid .container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .equipment-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-features li {
        font-size: 14px;
    }

    .benefit-card {
        padding: 15px;
    }

    .benefit-card i {
        font-size: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .equipment-button-container {
        margin: 15px 0;
    }

    .services-grid {
        padding: 15px 0;
    }

    .service-card {
        margin-bottom: 15px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 15px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-action .btn {
        max-width: 100%;
    }
} 