 .formation-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: Arial, sans-serif;
        color: #333;
    }

    .formation-header h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        border-left: 4px solid #f9c806;
        padding-left: 10px;
    }

    .formation-content {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .formation-left {
        flex: 1;
        max-width: 60%;
    }

    .formation-right {
        flex: 1;
        max-width: 35%;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .formation-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .formation-description {
        margin-top: 20px;
        line-height: 1.6;
        font-size: 1rem;
    }

    .formation-meta p {
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .formation-meta p strong {
        font-weight: bold;
    }

    .formation-buttons {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .button {
        display: inline-block;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        color: #fff;
        padding: 10px 20px;
        border-radius: 25px;
        transition: background-color 0.3s ease;
    }

    .btn-primary {
        background-color: #007bff;
    }

    .btn-primary:hover {
        background-color: #0056b3;
    }

    .btn-secondary {
        background-color: #6c757d;
    }

    .btn-secondary:hover {
        background-color: #5a6268;
    }