        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #e63946;
            --primary-dark: #c1121f;
            --secondary: #2a9d8f;
            --dark: #1d3557;
            --light: #f1faee;
            --gray: #8d99ae;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a192f;
            color: #e6f1ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(230, 57, 70, 0.3);
            color: white;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--light);
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .highlight {
            color: var(--primary);
            font-weight: bold;
        }
        header {
            background-color: rgba(13, 27, 49, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(42, 157, 143, 0.2);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 2rem;
        }
        .logo span {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: var(--light);
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }
        nav ul li a i {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        nav ul li a:hover {
            color: var(--primary);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(29, 53, 87, 0.5);
            padding: 10px 0;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .breadcrumb .current {
            color: var(--light);
        }
        .hero {
            background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero h1 span {
            color: var(--primary);
            text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccd6f6;
        }
        .search-box {
            max-width: 700px;
            margin: 40px auto;
            background: rgba(29, 53, 87, 0.7);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--secondary);
        }
        .search-box h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-box h3 i {
            margin-right: 10px;
            color: var(--primary);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--dark);
            border-radius: 30px 0 0 30px;
            background: #0a192f;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--secondary);
        }
        .search-form button {
            background: linear-gradient(to right, var(--secondary), #1a7c6e);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(to right, #1a7c6e, var(--secondary));
        }
        .content-section {
            background-color: #112240;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary);
        }
        .content-section h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--light);
            display: flex;
            align-items: center;
        }
        .content-section h2 i {
            margin-right: 15px;
            color: var(--primary);
        }
        .content-section h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #a8b2d1;
            border-bottom: 2px dashed var(--gray);
            padding-bottom: 8px;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ccd6f6;
        }
        .content-section blockquote {
            border-left: 4px solid var(--secondary);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #a8b2d1;
            background: rgba(42, 157, 143, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .content-section ul, .content-section ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        .content-section li {
            margin-bottom: 10px;
            color: #ccd6f6;
        }
        .content-section strong {
            color: var(--primary);
            font-weight: 700;
        }
        .featured-image {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 450px;
            border-radius: 10px;
            border: 3px solid var(--dark);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .interactive-box {
            background: rgba(29, 53, 87, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid var(--secondary);
        }
        .interactive-box h3 {
            color: var(--light);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .interactive-box h3 i {
            margin-right: 10px;
        }
        .rating-box, .comment-box {
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .rating-form label, .comment-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #a8b2d1;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px 15px;
            background: #0a192f;
            border: 1px solid var(--dark);
            border-radius: 8px;
            color: white;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .footer-links {
            background-color: #0d1b2a;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(42, 157, 143, 0.3);
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(29, 53, 87, 0.5);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--primary);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(42, 157, 143, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ccd6f6;
            display: block;
            font-size: 1rem;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: #050e1a;
            color: #8d99ae;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(29, 53, 87, 0.7);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .copyright {
            font-size: 0.95rem;
            border-top: 1px solid rgba(141, 153, 174, 0.2);
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .section-title { font-size: 2.2rem; }
            .content-section h2 { font-size: 2rem; }
            .form-row { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(13, 27, 49, 0.98);
                padding: 20px;
                border-top: 1px solid var(--secondary);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                margin-left: 0;
            }
            .mobile-toggle {
                display: block;
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-section {
                padding: 25px;
            }
            .featured-image {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
            .section-title::after {
                width: 60px;
            }
        }
        @media (max-width: 576px) {
            .hero h1 { font-size: 2rem; }
            .section-title { font-size: 1.8rem; }
            .btn { padding: 10px 25px; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 30px; margin-bottom: 10px; }
            .search-form button { border-radius: 30px; padding: 15px; }
        }
