        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f14;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #d4a017;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #1a1a22 0%, #0a0a0e 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #3a3a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d4a017;
            text-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffd700;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4a017;
            transition: width 0.3s;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4a017;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #15151c;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #666;
        }
        .search-bar {
            background: #1a1a22;
            padding: 1.5rem 0;
            border-bottom: 1px solid #333;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: #252530;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-button {
            background: #d4a017;
            color: #000;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #ffd700;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: #15151c;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #d4a017;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0c060;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #b8a050;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #ccc;
            font-weight: 300;
            margin-bottom: 2.5rem;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .highlight {
            background: linear-gradient(90deg, #3a3a2a, #2a2a1a);
            border-left: 5px solid #d4a017;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .map-image {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #3a3a4a;
            margin: 2.5rem auto;
            box-shadow: 0 0 25px rgba(212, 160, 23, 0.2);
            transition: transform 0.5s ease;
        }
        .map-image:hover {
            transform: scale(1.01);
        }
        .figure-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: #1e1e28;
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid #d4a017;
        }
        .tip-card h4 {
            margin-top: 0;
            color: #ffd700;
        }
        .interactive-section {
            background: #1a1a22;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #3a3a4a;
        }
        .interactive-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .interactive-title i {
            font-size: 2rem;
            color: #d4a017;
        }
        .button {
            display: inline-block;
            background: linear-gradient(135deg, #d4a017, #b8860b);
            color: #000;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        .button:hover {
            background: linear-gradient(135deg, #ffd700, #d4a017);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(212, 160, 23, 0.4);
            text-decoration: none;
            color: #000;
        }
        .user-feedback {
            margin-top: 4rem;
            background: #15151c;
            padding: 2.5rem;
            border-radius: 12px;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ccc;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            background: #252530;
            border: 1px solid #444;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .footer-links {
            background: #1a1a22;
            padding: 3rem 0;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem 0.8rem 0;
            padding: 0.7rem 1.5rem;
            background: #252530;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #d4a017;
            transform: translateY(-3px);
        }
        .web-link:hover a {
            color: #000;
        }
        footer {
            background: #0a0a0e;
            padding: 2.5rem 0;
            text-align: center;
            color: #888;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
            .tips-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a22;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger { display: block; }
            .form-grid { grid-template-columns: 1fr; }
            .search-form { flex-direction: column; border-radius: 10px; }
            .search-input, .search-button { border-radius: 0; padding: 1rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 1.5rem; }
            .lead { font-size: 1.2rem; }
        }
