/* Base styles */
:root {
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --black: #000000;
    --dark-bg: #121212;
    --dark-bg-gradient: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%);
    --dark-bg-gradient-alt: linear-gradient(135deg, #222222 0%, #111111 100%);
    --text: #2C2C2C;
    --light-bg: #F4F4F4;
    --white: #FFFFFF;
    --gray: #888888;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background: var(--dark-bg-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    z-index: 0;
    animation: pulse 15s infinite linear;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.bg-dark h2, .bg-dark h3 {
    color: var(--white);
}

.bg-dark h2::after {
    background: var(--primary);
}

.text-center {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.icon {
    width: 70px;
    height: 70px;
    transition: var(--transition);
}

.section-heading {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}



/* Header styles */
header {
    background: var(--dark-bg-gradient);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.5;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--primary);
    margin: 0;
    font-size: 2.2rem;
    letter-spacing: 1px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover h1::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero section */
#hero {
    background: var(--dark-bg-gradient);
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30,30,30,0.6) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h2 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.9s;
    animation-fill-mode: both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--black);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--black);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
}

/* Services section */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 100%;
}

.service-item {
    width: 100%;
    box-sizing: border-box;
}

.service-item {
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--radius);
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover .service-icon .icon {
    transform: rotateY(180deg);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--primary);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--black);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary);
}

.service-link i {
    transition: var(--transition);
    margin-left: 0.3rem;
}

.service-link:hover i {
    transform: translateX(5px);
}

.brands-section {
    margin-top: 4rem;
    text-align: center;
}

.brands-section h3 {
    margin-bottom: 2rem;
}

.brands-slider {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.brand-item {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gray);
    transition: var(--transition);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.brand-item:hover {
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    transition: var(--transition);
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature:hover::after {
    height: 100%;
}

.feature:hover .feature-icon .icon {
    transform: scale(1.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.1);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature h3 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.feature-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-detail span {
    font-size: 0.9rem;
    color: var(--gray);
}

.feature-detail span i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
    margin-top: 5rem;
}

.testimonials h3 {
    margin-bottom: 2.5rem;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-item::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--black);
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Form styles */
.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.form-info {
    color: var(--white);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

form {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.form-header {
    background-color: var(--primary);
    color: var(--black);
    padding: 1.5rem;
    text-align: center;
}

.form-header h3 {
    margin: 0;
    color: var(--black);
    font-size: 1.5rem;
}

.form-section {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--black);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--black);
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    background-color: var(--white);
}

.required-mark {
    color: #e74c3c;
    margin-left: 3px;
}

.form-submit {
    margin-top: 0;
    padding: 1.5rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

button[type="submit"] {
    cursor: pointer;
    font-size: 1rem;
    border: none;
    width: 100%;
}

.help-text {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1rem;
    text-align: center;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Footer styles */
footer {
    background: var(--dark-bg-gradient);
    color: var(--white);
    position: relative;
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-info h3, .footer-links h3, .footer-services h3, .footer-newsletter h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-info h3::after, .footer-links h3::after, .footer-services h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-info p {
    margin-bottom: 1.5rem;
    color: #aaa;
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-info a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary);
}

.footer-links ul, .footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-links ul li a, .footer-services ul li {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a i, .footer-services ul li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links ul li:hover a, .footer-services ul li:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links ul li:hover a i, .footer-services ul li:hover i {
    transform: translateX(3px);
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background-color: transparent;
    border: none;
    padding: 1rem;
    color: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--black);
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
}

/* Form validation styles */
input:invalid, select:invalid {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    #hero h2 {
        font-size: 2.5rem;
    }
}

/* Menu hamburger pour mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    /* Réinitialisation pour éviter les débordements */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Container principal */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    /* Header et navigation */
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    /* Sections et grilles */
    section {
        padding: 3rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .services, .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        margin-bottom: 1rem;
    }
    
    /* Hero section */
    #hero {
        padding: 4rem 0;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
    
    /* Formulaire */
    #demande .container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    form {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-container {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    input, select, textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        padding: 0.75rem;
    }
    
    /* Cartes */
    .card {
        width: 100%;
        margin-bottom: 1.5rem;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    section {
        padding: 4rem 0;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

/* Optimisations pour très petits écrans */
@media (max-width: 375px) {
    :root {
        --space-unit: 4px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    h1 {
        font-size: 1.8rem;
        font-weight: 700;
    }
    
    h2 {
        font-size: 1.6rem;
        font-weight: 700;
    }
    
    h3 {
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    #hero h2 {
        font-size: 1.8rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    #hero p {
        font-size: 1.1rem;
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .service-item, .feature, .testimonial-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .service-icon, .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .footer-content {
        gap: var(--space-md);
    }
    
    /* Amélioration de la lisibilité */
    p, li, label, input, select, textarea {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Augmentation du contraste */
    .service-item h3, .feature h3, .testimonial-item h3 {
        color: var(--black);
        font-weight: 700;
    }
    
    /* Boutons plus visibles */
    .btn-primary, .btn-secondary {
        font-weight: 700;
        padding: 1rem 1.5rem;
        margin: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}
