* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Accessibilite */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    body {
        scroll-behavior: auto;
    }
}

/* Focus visible pour accessibilite */
*:focus-visible {
    outline: 2px solid #32b4cf;
    outline-offset: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #32b4cf;
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    height: 50px;
    width: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent !important;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-banner {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: url('../Background logo IDM Entreprise.jpg') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5.5rem 0 2.5rem 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.logo-banner-img {
    width: 330px;
    height: 356px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    max-width: 90vw;
    max-height: 60vw;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal;
}

@media (min-width: 768px) {
    .logo-banner-img {
        width: 500px;
        height: 500px;
        max-width: 100vw;
        max-height: 100vw;
        background: transparent !important;
        background-color: transparent !important;
        mix-blend-mode: normal;
    }
}

.logo-navbar {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: bold;
}

.nav-links a:hover,
.nav-links a.active {
    background: white;
    color: #32b4cf;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
    background: #32b4cf;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background-color: #32b4cf;
    border: none;
    padding: 8px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #32b4cf;
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar.active {
    left: 0;
    background: rgba(50, 180, 207, 0.5);
}

.sidebar-header {
    background: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.sidebar-logo {
    height: 40px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    background: transparent !important;
}

.sidebar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sidebar-links {
    padding: 2rem 0;
}

.sidebar-links a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: rgba(255,255,255,0.2);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 34vh;
    background: linear-gradient(135deg, rgba(50, 180, 207, 0.8), rgba(50, 180, 207, 0.6)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%2387CEEB" width="1200" height="800"/><circle fill="%23228B22" cx="200" cy="200" r="80"/><circle fill="%2332CD32" cx="400" cy="150" r="60"/><circle fill="%23228B22" cx="600" cy="300" r="100"/><circle fill="%2332CD32" cx="800" cy="200" r="70"/><circle fill="%23228B22" cx="1000" cy="350" r="90"/><rect fill="%23228B22" x="100" y="600" width="1000" height="200" rx="20"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 200px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    background: white;
    color: #32b4cf;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.about h2 {
    font-size: 2.5rem;
    color: #32b4cf;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: #32b4cf;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.about-text ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    position: relative;
}

.about-text li::before {
    content: '\2713';
    color: #32b4cf;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #32b4cf, #64c7d9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.5rem;
    color: #32b4cf;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.service-card {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(50,180,207,0.07);
    padding: 2rem 1.5rem;
    margin: 0 auto;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.service-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .service-card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .service-card {
        padding: 1.2rem 0.5rem;
    }
}

.service-img {
    width: 590px;
    height: 375px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    background: #f0f0f0;
}

@media (max-width: 1024px) {
    .service-img {
        width: 344px;
        height: 262px;
    }
}

@media (max-width: 768px) {
    .service-img {
        width: 255px;
        height: 162px;
        margin-bottom: 1rem;
    }
}

.service-info {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .service-card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .service-img {
        margin-bottom: 1rem;
    }
    .service-info {
        text-align: center;
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    text-align: center;
    color: #32b4cf;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #32b4cf;
    font-weight: bold;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

.contact-info h3 {
    color: #32b4cf;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: bold;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: bold;
}

.contact-item span {
    font-size: 1.5rem;
}

form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #32b4cf;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    margin-bottom: 20px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.consent-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #32b4cf;
}

.consent-label a {
    color: #32b4cf;
    text-decoration: underline;
}

.consent-label a:hover {
    color: #2a9bb8;
}

.submit-btn {
    background: #32b4cf;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #2a9bb8;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-info,
    form {
        padding: 20px;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-column h3 {
    color: #32b4cf;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column p,
.footer-column a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-column a:hover {
    color: #32b4cf;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance optimizations */
img {
    loading: 'lazy';
}

body {
    font-display: swap;
}

img:not(.logo-navbar):not(.logo-banner-img) {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.logo-navbar, .logo-banner-img {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    mix-blend-mode: normal;
}

img[src=""], img:not([src]) {
    opacity: 0;
}

.service-img, .logo-banner-img, .logo-navbar, .logo-sci-img {
    will-change: transform;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 1rem;
    }
}

/* Hidden SEO content */
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Section Avis Google */
.reviews {
    background: #f8f9fa;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(50, 180, 207, 0.03) 50%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reviews h2 {
    font-size: 2.5rem;
    color: #32b4cf;
    margin-bottom: 1rem;
    text-align: center;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.google-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: bold;
}

.google-g { color: #4285f4; }
.google-o1 { color: #ea4335; }
.google-o2 { color: #fbbc05; }
.google-g2 { color: #4285f4; }
.google-l { color: #34a853; }
.google-e { color: #ea4335; }

.reviews-stats {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(50,180,207,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stats-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #32b4cf;
    display: block;
}

.stats-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stars-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.star {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(50,180,207,0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #32b4cf, #64c7d9);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(50,180,207,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #32b4cf, #64c7d9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.2rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-stars .star {
    font-size: 1.2rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '\201C';
    font-size: 3rem;
    color: #32b4cf;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.review-text::after {
    content: '\201D';
    font-size: 3rem;
    color: #32b4cf;
    position: absolute;
    bottom: -25px;
    right: 0;
    opacity: 0.3;
}

.google-button {
    background: white;
    border: 2px solid #32b4cf;
    color: #32b4cf;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    max-width: 300px;
}

.google-button:hover {
    background: #32b4cf;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50,180,207,0.3);
}

/* Responsive reviews */
@media (max-width: 768px) {
    .reviews {
        padding: 4rem 1rem;
    }

    .reviews h2 {
        font-size: 2rem;
    }

    .reviews-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }
}

/* Animation pour les cartes */
.review-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

/* Section Logo SCI / Certifications */
.logo-sci-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-sci-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.certifications-title {
    font-size: 2.5rem;
    color: #32b4cf;
    margin-bottom: 1rem;
    text-align: center;
}

.certifications-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.logo-sci-container a {
    display: inline-block;
    transition: transform 0.3s ease;
    margin: 1rem 0;
}

.logo-sci-container a:hover {
    transform: scale(1.05);
}

.logo-sci-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-sci-img:hover {
    box-shadow: 0 6px 20px rgba(50,180,207,0.2);
}

.certification-text {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.certification-text strong {
    color: #32b4cf;
}

/* Responsive certifications */
@media (max-width: 768px) {
    .logo-sci-section {
        padding: 3rem 1rem;
    }

    .certifications-title {
        font-size: 2rem;
    }

    .certifications-description {
        font-size: 1.1rem;
    }

    .logo-sci-img {
        max-width: 300px;
    }

    .certification-text {
        font-size: 1rem;
    }
}

/* Page content spacing for sub-pages */
.page-content {
    padding-top: 80px;
}

/* Avis page hero */
.avis-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-top: 70px;
}

.avis-hero-content h1 {
    font-size: 2.8rem;
    color: #32b4cf;
    margin-bottom: 1rem;
}

.avis-hero-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.avis-hero-stars span {
    color: #f5c518;
    font-size: 2rem;
    margin: 0 3px;
}

.avis-google {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .avis-hero-content h1 {
        font-size: 2rem;
    }
}

/* Homepage sections */
.home-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-section h2 {
    font-size: 2.5rem;
    color: #32b4cf;
    text-align: center;
    margin-bottom: 1rem;
}

.home-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Homepage services preview */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.home-service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(50,180,207,0.07);
    transition: all 0.3s ease;
}

.home-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(50,180,207,0.15);
}

.home-service-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.home-service-card h3 {
    color: #32b4cf;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.home-service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-section h2 {
        font-size: 2rem;
    }
}

/* Homepage about preview */
.home-about-bg {
    background: #f8f9fa;
}

.home-about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.home-about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.home-about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.home-about-highlights {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.home-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #32b4cf;
    font-size: 1rem;
}

.home-highlight span {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .home-about-content {
        flex-direction: column;
    }

    .home-about-text h2 {
        text-align: center;
    }

    .home-about-highlights {
        justify-content: center;
    }
}

/* Homepage reviews preview */
.home-reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.home-reviews-stats .stat {
    text-align: center;
}

.home-reviews-stats .stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: #32b4cf;
    display: block;
}

.home-reviews-stats .stat-label {
    color: #666;
    font-size: 0.95rem;
}

.home-reviews-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin: 1rem 0;
}

.home-reviews-stars .star {
    color: #ffc107;
    font-size: 1.8rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}
