* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: #f5f5f5;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #00b4d8;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #90e0ef;
            text-shadow: 0 0 10px #00b4d8;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background: #00b4d8;
            color: #0c2461;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #f5f5f5;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            margin-top: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #90e0ef;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3rem;
            color: #00b4d8;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            color: #90e0ef;
            margin: 25px 0 15px;
            border-left: 5px solid #00b4d8;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #caf0f8;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #00b4d8;
            font-weight: 700;
        }
        em {
            color: #ffd166;
        }
        .highlight {
            background: rgba(0, 180, 216, 0.2);
            padding: 15px;
            border-left: 4px solid #00b4d8;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
            margin: 25px auto;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #90e0ef;
            text-decoration: underline;
        }
        .function-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .function-section h2 {
            border-left: none;
            text-align: center;
            color: #ffd166;
        }
        form {
            display: grid;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 12px;
            border: 2px solid #00b4d8;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #f5f5f5;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #90e0ef;
        }
        button {
            padding: 14px;
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background: linear-gradient(90deg, #0077b6, #00b4d8);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .stars i {
            font-size: 2rem;
            color: #ffd700;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: #ffed4e;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 180, 216, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #caf0f8;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 10px 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 20px;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
