.footer_tgp {
            background-color: #0d121d;
            color: #ffffff;
            width: 100%;
            padding: 40px 40px;
            position: relative;
            font-family: 'Roboto', Arial, sans-serif;
            margin: 0;
            box-sizing: border-box;
        }

        .footer_tgp * {
            box-sizing: border-box;
        }

        .footer-container_tgp {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-left_tgp {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .logo_tgp {
            width: 120px;
            height: auto;
        }

        .roman-numerals_tgp {
            color: #ffffff;
            font-size: 15px;
            font-weight: bold;
            letter-spacing: 2px;
            font-family: 'Lora', serif;
        }

        .footer-center_tgp {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-align: center;
            font-weight: bold;
            font-style: italic;
        }

        .footer-center_tgp p {
            font-size: 14px;
            line-height: 1.6;
            margin: 3px 0;
        }

        .tynox-link_tgp {
            color: #fc5ce2;
            text-decoration: none;
            font-weight: bold;
        }

        .tynox-link_tgp:hover {
            text-decoration: underline;
        }

        .email_tgp {
            font-style: italic;
            text-decoration: none;
        }

        .email_tgp a[href^="mailto:"] {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .etampes_tgp {
            margin-top: 15px;
            font-style: italic;
        }

        .footer-right_tgp {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
            font-weight: bold;
        }

        .copyright-text_tgp {
            font-size: 14px;
            font-style: italic;
            margin-bottom: 10px;
        }

        .all-link-btn_tgp {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            border-radius: 7px;
            padding: 8px 20px;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', Arial, sans-serif;
        }

        .all-link-btn_tgp:hover {
            background-color: #fc5ce2;
            color: #0d121d;
            border: 2px solid #fc5ce2;
        }

        .footer-links_tgp {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }

        .footer-links_tgp a {
            color: #5170ff;
            text-decoration: none;
            font-size: 13px;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .footer-links_tgp a:hover {
            color: #fc5ce2;
        }

        @media (max-width: 768px) {
            .footer_tgp {
                padding: 30px 20px;
            }

            .footer-container_tgp {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .footer-left_tgp,
            .footer-right_tgp {
                align-items: center;
            }

            .footer-links_tgp {
                align-items: center;
            }
        }