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

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5dc; /* Fond beige */
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
background-image: url('https://coach-clown.fr/img/bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

 }


 .combo-regular {
  font-family: "Combo", system-ui;
  font-weight: 400;
  font-style: normal;
}

        .card {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 600px;
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }




        .logo {
            width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .text-block {
            color: #555;
            line-height: 1.7;
            font-size: 16px;
            max-width: 500px;
            text-align: left;
        }

        .signature {
            color: #666;
            font-style: italic;
            font-size: 16px;
            margin-top: 15px;
            text-align: right;
            width: 100%;
        }

        .title-block {
            color: #333;
            font-size: 24px;
            font-weight: bold;
            margin: 15px 0 5px 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            padding: 0 10px;
            border-radius: 25px;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
        }

        .website-link {
            background-color: #81a7cb;
            padding: 0 15px;
        }

        .website-link:hover {
            background-color: #5c7790;
            transform: translateY(-2px);
        }

        .facebook {
            background-color: transparent;
            width: auto;
            height: auto;
            border-radius: 0;
            box-shadow: none;
            padding: 0;
        }

        .facebook:hover {
            background-color: transparent;
            transform: translateY(-2px);
        }

        .facebook img {
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease;
        }

        .facebook:hover img {
            transform: scale(1.1);
        }

        .instagram {
            background: transparent;
            width: auto;
            height: auto;
            border-radius: 0;
            box-shadow: none;
            padding: 0;
        }

        .instagram:hover {
            background: transparent;
            transform: translateY(-2px);
        }

        .instagram img {
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease;
        }

        .instagram:hover img {
            transform: scale(1.1);
        }


        /* Responsive pour tablettes */
        @media (max-width: 768px) {
            .card {
                padding: 30px;
                margin: 10px;
            }
            
            .logo {
                width: 80%;
            }
            
            .title-block {
                font-size: 24px;
            }
            
            .text-block {
                font-size: 15px;
            }
        }

        /* Responsive pour mobiles */
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .card {
                padding: 20px;
                gap: 25px;
            }
            
            
            .title-block {
                font-size: 22px;
            }
            
            .text-block {
                font-size: 14px;
            }
            
            .social-links {
                gap: 10px;
            }
            
            .website-link {
                font-size: 12px;
                padding: 0 10px;
            }
            
            .facebook img,
            .instagram img {
                width: 35px;
                height: 35px;
            }
            
            .social-link {
           
                height: 45px;
            }
        }