        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9e00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff9e00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo a:hover {
            color: #ffd166;
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.2rem;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-desktop a:hover {
            background: rgba(255, 158, 0, 0.3);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9e00;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 15px;
            background: #1b4332;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #adb5bd;
        }
        .breadcrumb a {
            color: #4cc9f0;
        }
        main {
            padding: 30px 0;
            background: #14213d;
            border-radius: 15px;
            margin: 20px auto;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
        }
        .article-header {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(90deg, #184e77, #1e6091);
            border-radius: 15px 15px 0 0;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.5rem;
            color: #ffd166;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px #000;
        }
        h2 {
            font-size: 2.5rem;
            color: #4cc9f0;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff9e00;
        }
        h3 {
            font-size: 2rem;
            color: #ff9e00;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #ffd166;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(255, 158, 0, 0.2);
            padding: 20px;
            border-left: 5px solid #ff9e00;
            border-radius: 8px;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            width: 80%;
            max-width: 800px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9);
            border: 5px solid #ff9e00;
        }
        .caption {
            font-style: italic;
            color: #adb5bd;
            margin-top: 10px;
        }
        .link-list {
            list-style: none;
            padding: 20px;
            background: rgba(76, 201, 240, 0.1);
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list li {
            margin: 10px 0;
        }
        .forms-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
            padding: 30px;
            background: rgba(29, 53, 87, 0.8);
            border-radius: 15px;
        }
        .form-box {
            background: #1b3a4b;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
        }
        .form-box h3 {
            color: #ffd166;
            margin-bottom: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 2px solid #4cc9f0;
            border-radius: 8px;
            background: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #ff9e00, #ffd166);
            color: #0d1b2a;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 158, 0, 0.5);
        }
        footer {
            background: #1b4332;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 5px solid #ff9e00;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            margin: 10px 0;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 158, 0, 0.3);
        }
        .copyright {
            text-align: center;
            padding: 20px;
            color: #adb5bd;
            border-top: 1px solid #2d6a4f;
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            p {
                font-size: 1.1rem;
            }
            .forms-section {
                grid-template-columns: 1fr;
            }
        }
