        /* CSS Variables for Design System */
        :root {
            --background: hsl(0, 0%, 100%);
            --foreground: hsl(0, 0%, 5%);
            --primary: hsl(45, 100%, 51%);
            --primary-foreground: hsl(0, 0%, 5%);
            --muted: hsl(0, 0%, 96%);
            --muted-foreground: hsl(0, 0%, 40%);
            --accent: hsl(4, 90%, 58%);
            --border: hsl(0, 0%, 90%);
            --radius: 0.25rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.8;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Article Styles */
        .article-section {
            padding: 4rem 0 1rem;
            background: linear-gradient(to bottom, var(--background), hsla(45, 100%, 51%, 0.03));
        }

        .article-section h1 {
            font-size: 4rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            line-height: 1.1;
        }

        .article-content {
            max-width: 1100px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 1.15rem;
            padding: 0 2rem;
        }

        .article-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin: 3rem 0 1.0rem;
            letter-spacing: 0.03em;
            font-weight: 400; /* Ensuring no bold as requested */
        }

        .article-content h3 {
            font-size: 1.6rem;
            color: var(--accent);
            margin: 2.5rem 0 1rem;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            color: var(--foreground);
            text-align: justify;
        }

        /* Table Styles */
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .article-content table th,
        .article-content table td {
            padding: 1rem;
            border: 1px solid var(--border);
            text-align: left;
        }

        .article-content table th {
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-weight: bold;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 0.05em;
        }

        .article-content table tr:nth-child(even) {
            background-color: var(--muted);
        }

        /* List Styles */
        .article-content ul {
            padding-left: 1.5rem;
            list-style-type: disc;
            margin-bottom: 1.5rem;
        }

        .article-content li {
            margin-bottom: 0.5rem;
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--muted);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-size: 1.25rem;
            color: var(--foreground);
            font-weight: bold;
            margin-bottom: 0.75rem;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 0.03em;
        }

        .faq-answer {
            color: var(--muted-foreground);
            line-height: 1.6;
        }

        /* Buttons */
        .btn-menu {
            display: inline-block;
            background-color: var(--primary);
            color: var(--primary-foreground);
            padding: 1rem 2rem;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            margin: 2rem auto;
            display: block;
            width: fit-content;
            transition: transform 0.2s, background-color 0.2s;
        }

        .btn-menu:hover {
            transform: translateY(-2px);
            background-color: hsl(45, 100%, 46%);
            text-decoration: none;
        }

        /* Map Container */
        .map-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            margin: 2rem 0;
            border-radius: var(--radius);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Related Articles Grid */
        .related-articles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .related-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: box-shadow 0.2s;
        }

        .related-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .related-image {
            width: 100%;
            height: 200px;
            background-color: var(--muted);
            object-fit: cover;
        }

        .related-content {
            padding: 1rem;
        }

        .related-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.25rem;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .article-section h1 {
                font-size: 3rem;
            }
            
            .article-content h2 {
                font-size: 2rem;
            }

            .article-content {
                padding: 0 1rem;
                font-size: 1rem;
            }

            .article-content table {
                font-size: 0.9rem;
            }

            .article-content table th,
            .article-content table td {
                padding: 0.5rem;
            }
        }

        