        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0f2b;
            color: #e6eaf0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #ffd43b;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            border-radius: 2px;
        }
        .highlight {
            color: #ffd43b;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #228be6, #4dabf7);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(34, 139, 230, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(34, 139, 230, 0.5);
            background: linear-gradient(135deg, #1c7ed6, #339af0);
        }
        .main-header {
            background: rgba(10, 15, 43, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #1c2a4d;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #ff8787, #ffe066);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffd43b;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd43b;
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(10, 15, 43, 0.98);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 999;
            display: none;
            flex-direction: column;
            gap: 20px;
            border-top: 1px solid #1c2a4d;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            padding: 12px;
            border-bottom: 1px solid #2d3a5c;
            display: block;
        }
        .breadcrumb {
            padding: 20px 0;
            font-size: 0.9rem;
            background-color: #111a36;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #4dabf7;
        }
        .hero {
            background: linear-gradient(rgba(10, 15, 43, 0.8), rgba(10, 15, 43, 0.9)), url('https://images.unsplash.com/photo-1562077772-3bd90403f7f0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 100px 0;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c6d0eb;
        }
        .content-section {
            background-color: #111a36;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-left: 5px solid #ff6b6b;
        }
        .content-section h2 {
            font-size: 2.2rem;
            color: #74c0fc;
            margin-bottom: 25px;
        }
        .content-section h3 {
            font-size: 1.8rem;
            color: #ffd43b;
            margin: 30px 0 15px;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #4dabf7;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 2px dotted #4dabf7;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: #1c2a4d;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid #ff6b6b;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ffd43b;
            margin-bottom: 15px;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            border-left: 5px solid #ffd43b;
            padding-left: 25px;
            margin: 40px 0;
            color: #c6d0eb;
        }
        .interactive-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .form-box {
            background: #1c2a4d;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        .form-box h3 {
            margin-bottom: 20px;
            color: #74c0fc;
        }
        .form-box input,
        .form-box textarea,
        .form-box select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: #0a0f2b;
            border: 1px solid #4dabf7;
            border-radius: 8px;
            color: #e6eaf0;
            font-size: 1rem;
        }
        .form-box textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd43b;
        }
        .long-tail-links {
            background: #0a0f2b;
            padding: 50px 0;
        }
        .web-link {
            display: inline-block;
            background: #1c2a4d;
            margin: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            border: 1px solid #4dabf7;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #4dabf7;
            transform: scale(1.05);
        }
        .web-link:hover a {
            color: #0a0f2b;
        }
        .main-footer {
            background: #050916;
            padding: 60px 0 30px;
            border-top: 3px solid #ff6b6b;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #74c0fc;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d3a5c;
            color: #a5b4cb;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .section-title { font-size: 2.2rem; }
            .content-section { padding: 30px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .mobile-nav { display: flex; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .section-title { font-size: 1.8rem; }
            .content-section h2 { font-size: 1.8rem; }
            .content-section h3 { font-size: 1.5rem; }
            .interactive-forms { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
        }
