.elementor-5494 .elementor-element.elementor-element-5376c2e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5494 .elementor-element.elementor-element-78d3c4f{--display:flex;--min-height:409px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-5494 .elementor-element.elementor-element-73483a3 .elementor-repeater-item-d92c7e2.elementor-social-icon{background-color:var( --e-global-color-astglobalcolor5 );}.elementor-5494 .elementor-element.elementor-element-73483a3 .elementor-repeater-item-4b0483f.elementor-social-icon{background-color:var( --e-global-color-astglobalcolor5 );}.elementor-5494 .elementor-element.elementor-element-73483a3 .elementor-repeater-item-4fae721.elementor-social-icon{background-color:var( --e-global-color-astglobalcolor5 );}.elementor-5494 .elementor-element.elementor-element-73483a3 .elementor-repeater-item-4fae721.elementor-social-icon i{color:var( --e-global-color-astglobalcolor2 );}.elementor-5494 .elementor-element.elementor-element-73483a3 .elementor-repeater-item-4fae721.elementor-social-icon svg{fill:var( --e-global-color-astglobalcolor2 );}.elementor-5494 .elementor-element.elementor-element-73483a3{--grid-template-columns:repeat(0, auto);text-align:center;--grid-column-gap:15px;--grid-row-gap:0px;}:root{--page-title-display:none;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for text-editor, class: .elementor-element-092d73a *//* Reset et base */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
}

/* Variables de couleur */
:root {
    --bg-primary: #0f172a;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --accent: #60a5fa;
    --bg-secondary: rgba(96, 165, 250, 0.1);
    --border-color: rgba(96, 165, 250, 0.2);
    --ast-global-color-1: #60a5fa;
    --ast-global-color-2: #ffffff;
    --ast-global-color-3: #cbd5e1;
    --ast-global-color-5: #0f172a;
}

/* Container global */
.page-container {
    min-height: 100vh;
}

.container {
       width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* Header Section */
.header-section {
    background: rgba(96, 165, 250, 0.05);
    padding: 4rem 0;
    text-align: center;
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.chevron-icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem; /* Réduit de 4rem à 2rem */
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accent-text {
    color: var(--accent);
}

.service-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--bg-primary);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem; /* Réduit l'espace au-dessus */
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-primary);
}

.social-link:hover svg {
    color: var(--bg-primary);
}

/* Overview Section */
.overview-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.overview-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.overview-images img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.final-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Ligne décorative */
.decorative-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 4rem 0 2rem 0;
}/* Guide Section */
.guide-section {
    background-color: hsl(222, 47%, 11%);
    padding: 5rem 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
    color: hsl(214, 32%, 91%);
}

/* Tabs */
.tabs-container {
    margin-bottom: 3rem;
}

.tabs-nav {
    background-color: hsla(222, 47%, 11%, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(215, 25%, 35%);
    border-radius: 1rem;
    padding: 0.5rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs-nav {
        grid-template-columns: repeat(5, 1fr);
    }
}

.tab-button {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    padding: 1rem;
    background: hsla(215, 25%, 27%, 0.5);
    color: hsl(214, 32%, 91%);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.tab-button:hover {
    background: hsl(215, 25%, 27%);
    color: hsl(0, 0%, 100%);
}

.tab-button.active {
    background: linear-gradient(to right, hsl(213, 93%, 68%), hsl(213, 93%, 78%));
    color: white;
    box-shadow: 0 10px 25px hsla(213, 93%, 68%, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
    background-color: hsla(222, 47%, 11%, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(215, 25%, 35%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tab-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tab-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsla(213, 93%, 68%, 0.2);
    color: hsl(213, 93%, 68%);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.tab-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: hsl(0, 0%, 100%);
}

.tab-subtitle {
    font-size: 1.125rem;
    color: hsl(213, 93%, 68%);
    font-weight: 600;
    line-height: 1.5;
}

.tab-description {
    font-size: 1rem;
    color: hsl(214, 32%, 91%);
    line-height: 1.7;
}

.tab-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tab-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}


/* Section FAQ */
.faq-section {
    padding: 4rem 2rem;
    background-color: var(--ast-global-color-5);
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 1.5rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--ast-global-color-3);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid #374151;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: var(--ast-global-color-2);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-button:hover {
    background: rgba(55, 65, 81, 0.3);
}

.faq-question {
    padding-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--ast-global-color-1);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--ast-global-color-3);
    line-height: 1.6;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-item.open .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section,
    .bottom-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    .header-section {
        padding: 3rem 0;
    }

    .main-content {
        padding: 3rem 0;
    }

    .main-title {
        font-size: 2rem;
    }

    .service-title {
        font-size: 2rem;
    }

    .breadcrumb {
        font-size: 0.875rem;
    }

    .overview-images {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-title {
        font-size: 1.9rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.75rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }

    .faq-title {
        font-size: 1.75rem;
    }
}/* End custom CSS */