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

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #000;
    background-color: #E8E8E8;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    min-height: 100vh;
    padding: 20px;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5%;
    align-items: flex-start;
}

.main-content {
    width: 65%;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 40px;
}

.main-content h1 {
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    font-size: 28px;
    text-transform: capitalize;
}

.main-content h2 {
    text-align: center;
    font-weight: bold;
    color: #7DC21E;
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    padding: 15px 30px;
    background-color: #7DC21E;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 194, 30, 0.4);
}

.mobile-break {
    display: none;
}

.sidebar {
    width: 30%;
}

.site-footer {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 14px;
    padding: 20px;
}

.site-footer a {
    color: #000;
    text-decoration: none;
}

.red {
    color: #CC0000;
}

/* Sidebar styles */
.sidebar-content {
    width: 100%;
}

.sidebar-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(to right, #2501ce, #9805d2, #e712c1, #e6193d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.prestation {
    margin-bottom: 30px;
    text-align: center;
}

.prestation-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.prestation p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-discover {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-discover:hover {
    transform: translateY(-2px);
}

.btn-violet {
    background-color: #BB44CC;
}

.btn-violet:hover {
    box-shadow: 0 4px 15px rgba(187, 68, 204, 0.4);
}

.btn-yellow {
    background-color: #F5D800;
    color: #000;
}

.btn-yellow:hover {
    box-shadow: 0 4px 15px rgba(245, 216, 0, 0.4);
}

.btn-orange {
    background-color: #F07830;
}

.btn-orange:hover {
    box-shadow: 0 4px 15px rgba(240, 120, 48, 0.4);
}

.separator {
    border: none;
    border-top: 2px dashed #999;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        gap: 30px;
    }

    .main-content {
        width: 100%;
        padding: 25px;
    }

    .main-content h1 {
        font-size: 24px;
    }

    .main-content h2 {
        font-size: 24px;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar-title {
        font-size: 36px;
    }

    .mobile-break {
        display: block;
    }

    .desktop-text {
        display: none;
    }

    .site-footer {
        margin-top: 20px;
    }
}

@media (min-width: 769px) {
    .mobile-text {
        display: none;
    }
}