

.page-wrapper {
    overflow-x: hidden;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%; /* Marge latérale de 5% */
    padding: 100px 5% 80px; /* Marges latérales cohérentes */
}

.container {
    max-width: 1200px;
    margin: 20px;
    padding: 20px;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Sections communes */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.highlight {
    color: #0066cc;
}

.header-decoration {
    width: 80px;
    height: 4px;
    background: #0066cc;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Grid layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.text-content {
    padding-right: 30px;
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

/* Video */
.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.responsive-video {
    width: 100%;
    display: block;
}

.services-section {
    padding: 60px 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 25px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 15px;
    margin-top: 20px;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #0055aa;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
}



/* Responsive */
@media (max-width: 768px) {
    main-container {
        padding: 0 5%; /* Maintien des marges sur mobile */
    }

    .grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .text-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Pour écrans de 22 pouces (1920px et plus) */
@media screen and (min-width: 1920px) {
    .main-container {
        font-size: 22px; /* Augmente la taille de base */
        max-width: 1800px; /* Limite la largeur max */
        margin: 0 auto; /* Centre le contenu */
    }

    
}

/* Pour très grands écrans (2560px et plus) */
@media screen and (min-width: 2560px) {
    .main-container {
        font-size: 26px;
        max-width: 2200px;
    }

}