        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #ff9e00, #ff6b00);
            color: #0d1b2a;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
        }
        section {
            padding: 80px 0;
        }
        h1, h2, h3, h4 {
            color: #ff9e00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h1 {
            font-size: 3.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #ff6b00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #778da9;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 158, 0, 0.1);
            border-left: 4px solid #ff9e00;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: rgba(13, 27, 42, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px 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: #ff9e00;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #e0e1dd;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: #ff9e00;
            border-bottom: 2px solid #ff9e00;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9e00;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1b263b;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #415a77;
        }
        .breadcrumb {
            background-color: #1b263b;
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ff9e00;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1597378609416-47cc937b294c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            text-align: center;
            padding: 120px 20px;
        }
        .hero h1 {
            margin-bottom: 30px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #caf0f8;
        }
        .search-section {
            background-color: #1b263b;
            padding: 40px 0;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: #e0e1dd;
            color: #0d1b2a;
        }
        .search-btn {
            padding: 0 30px;
            background: linear-gradient(90deg, #ff9e00, #ff6b00);
            border: none;
            color: #0d1b2a;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #ff6b00, #ff9e00);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
        }
        article p {
            text-align: justify;
        }
        .article-image {
            margin: 40px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: #1b263b;
            color: #778da9;
        }
        .sidebar {
            background-color: #1b263b;
            padding: 30px;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #415a77;
        }
        .interactive-forms {
            background-color: #1b263b;
            padding: 40px;
            border-radius: 10px;
            margin-top: 60px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ff9e00;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #415a77;
            background-color: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #778da9;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ff9e00;
        }
        .form-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .long-tail-section {
            background-color: #0d1b2a;
            padding: 60px 0;
            border-top: 1px solid #415a77;
            border-bottom: 1px solid #415a77;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #1b263b;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #415a77;
        }
        .web-link a {
            color: #caf0f8;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ff9e00;
            text-decoration: underline;
        }
        footer {
            background-color: #1b263b;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        .footer-logo .logo {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-column h4 {
            color: #ff9e00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 12px;
        }
        .footer-column a:hover {
            color: #ff9e00;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #415a77;
            color: #778da9;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .header-container { padding: 0 15px; }
            .hero { padding: 80px 20px; }
            .hero h1 { font-size: 2.3rem; }
            .hero p { font-size: 1.1rem; }
            section { padding: 50px 0; }
            .interactive-forms { padding: 25px; }
            .footer-content { flex-direction: column; }
            .form-actions { flex-direction: column; }
            .form-actions .btn { width: 100%; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .btn { padding: 10px 20px; }
            .search-form { flex-direction: column; border-radius: 10px; }
            .search-input, .search-btn { width: 100%; border-radius: 0; }
        }
