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

        body {
            font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #8b8686;
            background: #210f1d url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23210f1d" width="100" height="100"/></svg>');
        }

        .page-wrapper {
            position: relative;
            width: 100%;
            background: linear-gradient(to bottom, #ff5b5b 0%, transparent 300px);
        }

        header {
            padding: 25px 0;
            position: relative;
            z-index: 20;
        }

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

        .logo {
            text-align: center;
            padding: 0 0 20px 0;
        }

        .logo h1 {
            font-size: 80px;
            line-height: 1;
            margin: 0;
            font-weight: normal;
            font-family: "Damion", cursive;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .main-content {
            margin: 30px 0;
        }

        .content-wrapper {
            background: #fff;
            box-shadow: 0 5px 7px rgba(0, 0, 0, 0.22);
            padding: 20px;
            margin-bottom: 30px;
            border-top: 6px solid #3eb39a;
        }

        h1 {
            font-family: "BenchNine", sans-serif;
            font-size: 38px;
            line-height: 1.3;
            color: #434242;
            margin: 0 0 20px 0;
            font-weight: bold;
            letter-spacing: -1px;
        }

        article {
            margin-bottom: 30px;
        }

        article p {
            margin: 0 0 20px 0;
            font-size: 16px;
            line-height: 1.8;
            color: #8b8686;
        }

        article h2,
        article h3,
        article h4,
        article h5,
        article h6 {
            font-family: "BenchNine", sans-serif;
            color: #434242;
            margin: 25px 0 15px 0;
            font-weight: bold;
            letter-spacing: -1px;
        }

        article h2 {
            font-size: 32px;
            color: #3eb39a;
        }

        article h3 {
            font-size: 28px;
        }

        article h4 {
            font-size: 24px;
        }

        article h5 {
            font-size: 20px;
        }

        article h6 {
            font-size: 18px;
        }

        article ul,
        article ol {
            margin: 0 0 20px 20px;
        }

        article li {
            margin: 0 0 10px 0;
            padding-left: 5px;
        }

        .transition-section {
            background: #fff;
            box-shadow: 0 5px 7px rgba(0, 0, 0, 0.22);
            padding: 20px;
            margin-bottom: 30px;
            border-top: 6px solid #ff5b5b;
        }

        .transition-section p {
            margin: 0 0 15px 0;
            font-size: 16px;
            line-height: 1.8;
            color: #8b8686;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        .links-section {
            background: #fff;
            box-shadow: 0 5px 7px rgba(0, 0, 0, 0.22);
            padding: 20px;
            margin-bottom: 30px;
            border-top: 6px solid #262626;
        }

        .links-section h3 {
            font-family: "BenchNine", sans-serif;
            font-size: 28px;
            color: #434242;
            margin: 20px 0 15px 0;
            font-weight: bold;
            letter-spacing: -1px;
        }

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

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

        .links-section li {
            margin: 0 0 12px 0;
            padding: 0;
            break-inside: avoid;
        }

        .links-section a {
            color: #3eb39a;
            text-decoration: none;
            font-size: 15px;
            line-height: 1.6;
            transition: color 0.2s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #71a08b;
            text-decoration: underline;
        }

        footer {
            padding: 0 0 30px 0;
        }

        .site-footer {
            background: #fff;
            box-shadow: 0 5px 7px rgba(0, 0, 0, 0.22);
            border-bottom: 6px solid #3eb39a;
            padding: 15px 20px;
            text-align: center;
            color: #8b8686;
            font-size: 13px;
        }

        @media (max-width: 767px) {
            .logo h1 {
                font-size: 60px;
            }

            h1 {
                font-size: 30px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 22px;
            }

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

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

            .content-wrapper,
            .transition-section,
            .links-section {
                padding: 15px;
            }
        }

        @media (min-width: 768px) and (max-width: 979px) {
            .logo h1 {
                font-size: 70px;
            }

            .links-section ul {
                column-gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .logo h1 {
                font-size: 50px;
            }

            body {
                font-size: 13px;
            }

            article p,
            .transition-section p {
                font-size: 15px;
            }
        }
    