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

        :root {
            --primary-color: #01AB98;
            --secondary-color: #E6972C;
            --tertiary-color: #E7522D;
            --bg-dark: #050505;
            --bg-gray: #1F1F1F;
            --text-light: #C6CBD1;
            --text-white: #fff;
            --border-color: #01AB98;
        }

        body {
            font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            font-size: 16px;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 30px;
        }

        header {
            background-color: var(--bg-dark);
            padding: 30px 0;
            border-bottom: 2px solid var(--primary-color);
        }

        h1 {
            font-family: 'dinpro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--text-white);
            line-height: 1.2;
            margin-bottom: 30px;
            padding-bottom: 20px;
            position: relative;
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }

        h2 {
            font-family: 'dinpro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 900;
            color: var(--text-white);
            line-height: 1.2;
            margin-bottom: 25px;
        }

        h3 {
            font-family: 'dinpro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: 900;
            color: var(--text-white);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h4, h5, h6 {
            font-family: 'dinpro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 900;
            color: var(--text-white);
            line-height: 1.2;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        article {
            background-color: var(--bg-dark);
            padding: 60px 0;
        }

        article p,
        article h2,
        article h3,
        article h4,
        article h5,
        article h6 {
            max-width: 900px;
        }

        .transition-section {
            background-color: var(--bg-gray);
            padding: 60px 0;
        }

        .transition-section p {
            max-width: 900px;
            font-size: 1.1rem;
        }

        .links-section {
            background-color: var(--bg-dark);
            padding: 80px 0;
            border-top: 2px solid var(--primary-color);
        }

        .links-section h3 {
            margin-top: 40px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px 30px;
            margin-bottom: 40px;
        }

        .links-section li {
            position: relative;
            padding-left: 20px;
        }

        .links-section li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .links-section a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
            line-height: 1.6;
        }

        .links-section a:hover {
            color: var(--primary-color);
        }

        footer {
            background-color: var(--bg-gray);
            padding: 40px 0;
            border-top: 2px solid var(--primary-color);
            margin-top: 60px;
        }

        footer p {
            text-align: center;
            color: var(--text-light);
            margin: 0;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            article {
                padding: 40px 0;
            }

            .transition-section {
                padding: 40px 0;
            }

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

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

            h1 {
                margin-bottom: 25px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .links-section ul {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .text-primary {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }
    