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

        body {
            background-color: #000;
            color: #a7a7a7;
            font-family: Georgia, serif;
            font-size: 16px;
            line-height: 1.6em;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        #header {
            background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
            border-bottom: 2px solid #bf4d07;
            padding: 20px 0;
            width: 100%;
        }

        #header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #nav-top {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 15px;
        }

        #nav-top a {
            color: #bf4d07;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        #nav-top a:hover {
            color: #985f0e;
        }

        #brewery-roll {
            background-color: #222;
            padding: 15px 0;
            text-align: center;
            border-bottom: 1px solid #333;
        }

        #brewery-roll-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #brewery-list {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 15px;
            list-style: none;
        }

        #brewery-list li {
            color: #bf4d07;
            font-size: 12px;
        }

        #brewery-list li a {
            color: #bf4d07;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        #brewery-list li a:hover {
            color: #bf7307;
        }

        #main-container {
            flex: 1;
            width: 100%;
            background-color: #0d0d0d;
        }

        #content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        h1 {
            font-family: Georgia, serif;
            font-weight: normal;
            font-size: 36px;
            color: #985f0e;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.3;
        }

        article {
            background-color: #222;
            padding: 40px;
            margin-bottom: 40px;
            border-left: 4px solid #bf4d07;
        }

        article h2 {
            font-family: Georgia, serif;
            font-weight: normal;
            font-size: 28px;
            color: #985f0e;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        article h2:first-child {
            margin-top: 0;
        }

        article h3 {
            font-family: Georgia, serif;
            font-weight: bold;
            font-size: 22px;
            color: #bab9b3;
            margin-bottom: 15px;
            margin-top: 25px;
        }

        article h4 {
            font-family: Georgia, serif;
            font-weight: bold;
            font-style: italic;
            font-size: 18px;
            color: #bab9b3;
            margin-bottom: 12px;
            margin-top: 20px;
        }

        article p {
            font-size: 16px;
            color: #a7a7a7;
            margin-bottom: 18px;
            line-height: 1.7;
        }

        article a {
            color: #985f0e;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        article a:hover {
            color: #bf4d07;
            border-bottom-color: #bf4d07;
        }

        #transition-section {
            background-color: #1a1a1a;
            padding: 35px 40px;
            margin-bottom: 40px;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
        }

        #transition-section p {
            font-size: 16px;
            color: #a7a7a7;
            margin-bottom: 15px;
            line-height: 1.7;
        }

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

        #links-section {
            background-color: #222;
            padding: 40px;
            border-left: 4px solid #bf4d07;
        }

        #links-section h2 {
            font-family: Georgia, serif;
            font-weight: normal;
            font-size: 28px;
            color: #985f0e;
            margin-bottom: 25px;
        }

        #links-section h3 {
            font-family: Georgia, serif;
            font-weight: bold;
            font-size: 20px;
            color: #bab9b3;
            margin-bottom: 15px;
            margin-top: 30px;
        }

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

        #links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 30px;
            margin-bottom: 25px;
        }

        #links-section ul li {
            padding-left: 15px;
            position: relative;
        }

        #links-section ul li:before {
            content: "∴";
            position: absolute;
            left: 0;
            color: #bf4d07;
            font-weight: bold;
        }

        #links-section ul li a {
            color: #985f0e;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
            display: inline-block;
        }

        #links-section ul li a:hover {
            color: #bf4d07;
        }

        #footer {
            background-color: #0d0d0d;
            border-top: 2px solid #bf4d07;
            padding: 30px 0;
            margin-top: auto;
        }

        #footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 20px;
        }

        #footer-nav a {
            color: #747474;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        #footer-nav a:hover {
            color: #985f0e;
        }

        #copyright {
            text-align: center;
            color: #424242;
            font-size: 12px;
            padding-top: 15px;
            border-top: 1px solid #222;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
                margin-bottom: 25px;
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            article h4 {
                font-size: 16px;
            }

            article p {
                font-size: 15px;
            }

            #transition-section {
                padding: 25px;
            }

            #links-section {
                padding: 25px;
            }

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

            #links-section h3 {
                font-size: 18px;
            }

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

            #nav-top {
                gap: 15px;
            }

            #nav-top a {
                font-size: 12px;
            }

            #brewery-list {
                gap: 6px 10px;
            }

            #brewery-list li {
                font-size: 11px;
            }

            #footer-nav {
                gap: 15px;
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            #content-wrapper {
                padding: 30px 15px;
            }

            h1 {
                font-size: 24px;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            #transition-section {
                padding: 20px;
            }

            #links-section {
                padding: 20px;
            }

            #links-section h2 {
                font-size: 20px;
            }

            #links-section h3 {
                font-size: 16px;
            }
        }
    