        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            color: #f5f5f5;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4a90e2;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #78c5ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid #f8c291;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #f8c291, #e55039);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f8c291;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 36, 97, 0.98);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            border-top: 2px solid #f8c291;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            font-size: 1.2rem;
            padding: 10px;
            border-left: 4px solid #f8c291;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #f8c291;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, #1e3799 0%, #0c2461 100%);
            margin-bottom: 40px;
            border-bottom: 5px solid #f8c291;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            color: #fff;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #d1d8e0;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border-left: 8px solid #f8c291;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h2 {
            font-size: 2.5rem;
            color: #f8c291;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px dashed rgba(248, 194, 145, 0.5);
        }
        h3 {
            font-size: 1.8rem;
            color: #78c5ff;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a5b1c2;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(248, 194, 145, 0.15);
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid #f8c291;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .feature-card {
            background: rgba(30, 55, 153, 0.7);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }
        .feature-card i {
            font-size: 3rem;
            color: #f8c291;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            color: #fff;
            margin-bottom: 15px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #4a90e2;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #f8c291;
            background: rgba(255,255,255,0.15);
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(to right, #f8c291, #e55039);
            color: #0c2461;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #e55039, #f8c291);
            transform: scale(1.05);
        }
        .related-links {
            background: rgba(30, 55, 153, 0.4);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .link-card {
            background: rgba(255,255,255,0.08);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .link-card:hover {
            background: rgba(248, 194, 145, 0.2);
            transform: scale(1.03);
        }
        footer {
            background: #0c2461;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 5px solid #f8c291;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #f8c291;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.2);
            color: #78c5ff;
        }
        friend-link a {
            color: inherit;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            .content-section { padding: 25px; }
            .feature-box { grid-template-columns: 1fr; }
            .links-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .links-grid { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; }
        }
