/* service-page.css */

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 500;
}

.hero .description {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.benefits h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
