
        * {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        html {
            height: 100%;
            font-size: 62.5%;
        }

        html, body {
            margin: 0;
            padding: 0;
        }

        body {
            width: 100%;
            height: 100%;
            font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
            font-size: 15px;
            color: #000051;
            font-weight: 400;
            line-height: 1.6;
            background: #f5f5f5;
        }

        a {
            color: #000051;
            text-decoration: none;
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

        a:hover {
            color: #fca141;
            text-decoration: none;
        }

        .container {
            margin: 0 auto;
            position: relative;
            max-width: 780px;
            width: 100%;
            padding: 0 20px;
        }

        header {
            width: 100%;
            background: #000051;
            padding: 20px 0;
        }

        header .inside {
            max-width: 780px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header .col-logo {
            display: block;
            text-align: center;
        }

        h1 {
            margin: 0;
            padding: 3rem 0 2rem;
            width: 100%;
            text-align: left;
            font-family: "Teko", -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 48px;
            font-weight: bold;
            color: #000051;
            line-height: 1.1;
            text-transform: uppercase;
        }

        article {
            background: #fff;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            color: #000051;
        }

        article h2 {
            margin: 2rem 0 1rem;
            padding: 0;
            font-size: 28px;
            color: #000051;
            font-family: "Teko", sans-serif;
            font-weight: bold;
            line-height: 1.2;
            text-transform: uppercase;
        }

        article h3 {
            margin: 1.5rem 0 0.8rem;
            padding: 0;
            font-size: 22px;
            color: #000051;
            font-weight: 600;
            line-height: 1.3;
        }

        article h4 {
            margin: 1.2rem 0 0.6rem;
            padding: 0;
            font-size: 18px;
            color: #000051;
            font-weight: 600;
            line-height: 1.3;
        }

        article p {
            margin: 0 0 1rem;
            padding: 0;
            line-height: 1.6;
            text-align: justify;
        }

        article ul,
        article ol {
            margin: 0 0 1rem 20px;
            padding-left: 20px;
        }

        article li {
            padding: 3px 0;
        }

        article strong,
        article b {
            font-weight: 600;
        }

        .transition-section {
            background: #fff;
            padding: 2rem 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            color: #000051;
        }

        .transition-section p {
            margin: 0 0 1rem;
            line-height: 1.6;
            text-align: justify;
        }

        .links-section {
            background: #fff;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .links-section h2 {
            margin: 0 0 2rem;
            padding: 0;
            font-size: 32px;
            color: #000051;
            font-family: "Teko", sans-serif;
            font-weight: bold;
            line-height: 1.1;
            text-transform: uppercase;
            text-align: center;
        }

        .links-section h3 {
            margin: 2rem 0 1rem;
            padding: 0 0 0.5rem;
            font-size: 24px;
            color: #000051;
            font-weight: bold;
            line-height: 1.2;
            border-bottom: 3px solid #fca141;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 2rem;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 20px;
        }

        .links-section li {
            padding: 0;
            margin: 0;
        }

        .links-section li a {
            display: block;
            padding: 10px 12px;
            background: #f8f8f8;
            color: #000051;
            font-weight: 500;
            border-left: 3px solid #fca141;
            transition: all 0.3s ease;
        }

        .links-section li a:hover {
            background: #fff3e6;
            border-left-color: #000051;
            padding-left: 18px;
        }

        footer {
            position: relative;
            width: 100%;
            background: #202029;
            margin-top: 3rem;
            padding: 2rem 0 3rem;
        }

        footer .inside {
            max-width: 780px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-flow: row nowrap;
            justify-content: flex-start;
        }

        footer .footer-logo {
            display: block;
            margin: auto 0;
            width: 100px;
            height: 100px;
        }

        footer .footer-infos {
            margin: auto 0;
            width: calc(100% - 100px);
            padding-left: 20px;
        }

        footer .footer-infos .footer-title {
            font-size: 20px;
            font-family: "Teko", sans-serif;
            text-transform: uppercase;
            font-weight: 500;
            color: #fff;
            width: 100%;
            padding-bottom: 0.5rem;
        }

        footer .footer-infos .footer-address {
            font-size: 14px;
            font-weight: 400;
            line-height: 1.4;
            color: #fff;
            width: 100%;
        }

        .clear {
            clear: both;
        }

        @media only screen and (max-width: 768px) {
            body {
                font-size: 14px;
            }

            h1 {
                font-size: 38px;
                padding: 2rem 0 1.5rem;
            }

            article {
                padding: 2rem 1.5rem;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            .transition-section {
                padding: 1.5rem;
            }

            .links-section {
                padding: 2rem 1.5rem;
            }

            .links-section h2 {
                font-size: 28px;
            }

            .links-section h3 {
                font-size: 22px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            footer .inside {
                flex-flow: column;
            }

            footer .footer-logo {
                width: 100%;
                text-align: center;
                margin-bottom: 1rem;
            }

            footer .footer-infos {
                width: 100%;
                padding-left: 0;
                text-align: center;
            }
        }

        @media only screen and (max-width: 480px) {
            h1 {
                font-size: 32px;
            }

            article {
                padding: 1.5rem 1rem;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            .links-section {
                padding: 1.5rem 1rem;
            }

            .links-section h2 {
                font-size: 24px;
            }

            .links-section h3 {
                font-size: 20px;
            }
        }
    