
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        #top {
            background: #1a1a1a;
            color: #eee;
            padding: 5px 0;
            font-size: 14px;
        }
        
        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .navbar {
            background-color: #fff;
            border-bottom: 1px solid #ccc;
            padding: 15px 0;
            margin-bottom: 0;
        }
        
        .navbar-brand {
            font-size: 24px;
            font-weight: 900;
            color: #333;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }
        
        .navdown {
            position: relative;
            background-color: #464646;
            height: 10px;
            margin-bottom: 20px;
        }
        
        main {
            min-height: 60vh;
            padding: 40px 0;
        }
        
        h1 {
            font-family: "Roboto", Helvetica, Arial, sans-serif;
            font-size: 36px;
            font-weight: 900;
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: solid 5px #464646;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 30px;
            font-weight: 700;
            color: #333;
            margin: 30px 0 20px;
            line-height: 1.2;
        }
        
        h3 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin: 25px 0 15px;
            line-height: 1.2;
        }
        
        h4 {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin: 20px 0 10px;
            line-height: 1.2;
        }
        
        article p {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
            color: #555;
        }
        
        article {
            margin-bottom: 40px;
        }
        
        .transition-section {
            margin: 40px 0;
            padding: 20px 0;
        }
        
        .transition-section p {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
            color: #555;
        }
        
        .links-section {
            background-color: #f9f9f9;
            padding: 40px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin-top: 40px;
        }
        
        .links-section h3 {
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: solid 3px #464646;
        }
        
        .links-section ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            column-count: 2;
            column-gap: 30px;
        }
        
        .links-section li {
            margin-bottom: 10px;
            padding: 5px 0;
            border-bottom: solid 1px #eee;
            break-inside: avoid;
        }
        
        .links-section a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
            display: block;
            transition: all 0.2s ease-out;
            position: relative;
            padding-left: 0;
        }
        
        .links-section a:hover {
            color: #464646;
            padding-left: 5px;
        }
        
        a {
            color: #555;
            text-decoration: none;
            transition: all 0.2s ease-out;
        }
        
        a:hover {
            color: #464646;
            text-decoration: underline;
        }
        
        #footer {
            background: #1a1a1a;
            padding: 50px 0;
            color: #999;
            margin-top: 40px;
        }
        
        #footer h4 {
            color: #eee;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
        }
        
        #footer p {
            margin: 0;
            font-size: 14px;
            color: #999;
        }
        
        #copyright {
            background: #333;
            color: #ccc;
            padding: 20px 0;
            font-size: 12px;
            text-align: center;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-md-12 {
            width: 100%;
            padding: 0 15px;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
                padding-bottom: 10px;
            }
            
            h2 {
                font-size: 24px;
            }
            
            h3 {
                font-size: 20px;
            }
            
            .links-section ul {
                column-count: 1;
            }
            
            .navdown {
                height: 5px;
            }
        }
        
        @media (min-width: 769px) and (max-width: 991px) {
            .links-section ul {
                column-count: 2;
            }
        }
    