        * {
            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, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e7ff;
            line-height: 1.8;
            font-size: 1.1rem;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #a5d8ff;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            border-left: 5px solid #339af0;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            color: #bac8ff;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        strong {
            color: #ffe066;
            font-weight: 700;
        }
        em {
            color: #b197fc;
            font-style: italic;
        }
        .lead {
            font-size: 1.4rem;
            color: #b2e0ff;
            font-weight: 300;
        }
        .main-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7, #51cf66);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #d0ebff;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background: rgba(77, 171, 247, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #4dabf7;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 30px;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #74c0fc;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, rgba(26, 58, 95, 0.9) 0%, rgba(12, 26, 45, 1) 100%);
            border-radius: 20px;
            margin: 30px 0;
        }
        .hero h1 {
            margin-bottom: 25px;
        }
        .hero p.lead {
            max-width: 800px;
            margin: 0 auto 35px;
        }
        .featured-image {
            margin: 40px auto;
            max-width: 900px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 3px solid #339af0;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            margin-top: 10px;
            color: #bac8ff;
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(51, 154, 240, 0.15), rgba(32, 201, 151, 0.1));
            border-left: 5px solid #20c997;
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        .grid-2col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 40px 0;
        }
        .card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(77, 171, 247, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .form-section {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #a5d8ff;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #4dabf7;
            border-radius: 8px;
            color: #e0e7ff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #20c997;
            box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.2);
        }
        button, .btn {
            background: linear-gradient(90deg, #339af0, #20c997);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(51, 154, 240, 0.3);
            text-decoration: none;
            color: white;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd43b;
            margin: 15px 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .main-footer {
            background: rgba(10, 20, 35, 0.98);
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 3px solid #339af0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .main-nav ul {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                flex-direction: column;
                padding: 20px;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
                border-radius: 0 0 15px 15px;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero {
                padding: 50px 20px;
            }
            .form-section {
                padding: 25px;
            }
            section {
                padding: 40px 0;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .grid-2col {
                grid-template-columns: 1fr;
            }
        }
