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

        body {
            font-family: "Arimo", Arial, sans-serif;
            font-size: 15px;
            line-height: 1.6;
            color: #545454;
            background-color: #f8f8f8;
        }

        header {
            background-color: #fff;
            box-shadow: 0 0 3px #212121;
            padding: 25px 0;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-logo h3 {
            margin: 0;
            font-size: 28px;
            color: #212121;
            font-weight: bold;
            text-transform: capitalize;
        }

        .header-logo h5 {
            font-size: 14px;
            margin: 0;
            color: #212121;
        }

        nav {
            margin-top: 15px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        nav ul li {
            display: inline-block;
        }

        nav ul li a {
            color: #212121;
            text-decoration: none;
            font-size: 12px;
            text-transform: uppercase;
            padding: 8px 15px;
            display: inline-block;
            position: relative;
            transition: all 0.3s ease;
        }

        nav ul li a:hover,
        nav ul li.active a {
            color: #82b440;
        }

        main {
            background-color: #fff;
            margin: 35px auto;
            padding: 50px 0;
        }

        h1 {
            font-size: 32px;
            color: #212121;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }

        h1::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: #82b440;
        }

        article {
            max-width: 970px;
            margin: 0 auto;
            padding: 0 15px;
        }

        article h2 {
            font-size: 24px;
            color: #212121;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h3 {
            font-size: 20px;
            color: #212121;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: bold;
        }

        article h4 {
            font-size: 18px;
            color: #212121;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
            color: #545454;
        }

        .transition-section {
            max-width: 970px;
            margin: 40px auto;
            padding: 0 15px;
        }

        .transition-section p {
            margin-bottom: 15px;
            color: #545454;
        }

        .links-section {
            background-color: #f2f2f2;
            padding: 50px 0;
            margin-top: 40px;
        }

        .links-section h3 {
            font-size: 18px;
            color: #212121;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
            margin-top: 30px;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin-bottom: 20px;
        }

        .links-section ul li {
            break-inside: avoid;
            margin-bottom: 8px;
        }

        .links-section ul li a {
            color: #212121;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 5px 0;
            border-bottom: 1px solid transparent;
        }

        .links-section ul li a:hover {
            color: #82b440;
            border-bottom-color: #82b440;
        }

        footer {
            background-color: #212121;
            color: #7d7d7d;
            text-align: center;
            padding: 30px 0;
            border-top: 2px solid #82b440;
        }

        footer p {
            margin: 0;
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            nav ul {
                justify-content: center;
            }
        }

        @media (max-width: 767px) {
            header {
                text-align: center;
            }

            .header-logo h3 {
                font-size: 24px;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            h1 {
                font-size: 20px;
            }

            article h2 {
                font-size: 18px;
            }

            article h3 {
                font-size: 16px;
            }

            .links-section ul {
                column-count: 1;
            }

            main {
                padding: 30px 0;
            }

            .links-section {
                padding: 30px 0;
            }
        }

        @media (max-width: 568px) {
            body {
                font-size: 14px;
            }

            .header-logo h3 {
                font-size: 20px;
            }

            nav ul li a {
                font-size: 11px;
                padding: 6px 10px;
            }
        }
    