/* Services Section */
.services-section {
    padding: 60px 0;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    color: #666;
}

/* Benefits Section */
.benefits-section {
    background-color: #f5f9ff;
    padding: 60px 0;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}

.benefits-list {
    list-style: square;
    text-align: center;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    list-style: square;
    text-align: center;
}

.benefits-list i {
    color: #0066cc;
    margin-right: 15px;
    font-size: 1.2rem;
    list-style: square;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}