
/* Section principale */
.seo-services {
    text-align: center;
    padding: 60px 20px;
}

.seo-services h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.seo-services p {
    font-size: 1.2rem;
    color: #0e1fb8;
    margin-bottom: 40px;
}

/* Conteneur des cartes */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Carte individuelle */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    background: #4e54c8;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.5rem;
}

.service-card .content {
    padding: 20px;
}

.service-card p {
    color: #555;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    margin: 20px 0;
}

.service-card .cta {
    display: block;
    text-align: center;
    padding: 15px;
    background: #4e54c8;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0 0 15px 15px;
}

.service-card .cta:hover {
    background: #3c43a8;
}