        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2a2d43;
            --secondary: #f04e30;
            --accent: #00b4d8;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        .mb-4 { margin-bottom: 40px; }
        .mt-2 { margin-top: 20px; }
        .mt-4 { margin-top: 40px; }
        .d-none { display: none; }
        .d-flex { display: flex; }
        .flex-column { flex-direction: column; }
        .align-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .wrap { flex-wrap: wrap; }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: #d93c20;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(240, 78, 48, 0.3);
        }
        .btn-accent {
            background: var(--accent);
        }
        .btn-accent:hover {
            background: #0093b3;
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
        }
        .highlight {
            background: linear-gradient(120deg, #fdeba0 0%, #fdeba0 100%);
            background-repeat: no-repeat;
            background-size: 100% 30%;
            background-position: 0 88%;
        }
        .emoji { font-size: 1.2em; }
        header {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .search-box {
            position: relative;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            width: 100%;
            padding: 10px 45px 10px 15px;
            border-radius: 50px;
            border: 2px solid transparent;
            background: rgba(255,255,255,0.1);
            color: white;
            outline: none;
        }
        .search-box input:focus {
            border-color: var(--accent);
            background: rgba(255,255,255,0.15);
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        nav {
            padding: 15px 0;
        }
        .nav-links {
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(42, 45, 67, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.7rem;
        }
        .hero {
            background: linear-gradient(rgba(42,45,67,0.9), rgba(42,45,67,0.9)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        main {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            margin: -40px auto 40px;
            position: relative;
            padding: 50px;
        }
        @media (max-width: 768px) {
            main { padding: 30px 20px; }
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        article h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        article h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin: 40px 0 15px;
        }
        article h4 {
            font-size: 1.4rem;
            color: var(--gray);
            margin: 30px 0 10px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        article ul, article ol {
            margin-bottom: 25px;
            padding-left: 30px;
        }
        article li {
            margin-bottom: 10px;
            line-height: 1.7;
        }
        .content-img {
            border-radius: 8px;
            overflow: hidden;
            margin: 30px auto;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .content-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: var(--gray);
            font-size: 0.9rem;
            background: #f8f9fa;
        }
        .info-box {
            background: #e9f7fe;
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .warning-box {
            background: #fff4e6;
            border-left: 5px solid #ff9900;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        .link-list li:before {
            content: '🚗';
            margin-right: 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--primary), #3a3f5f);
            color: white;
            padding: 25px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }
        .stat-card .label {
            font-size: 1rem;
            opacity: 0.9;
        }
        .form-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            margin: 60px 0;
        }
        .form-title {
            margin-top: 0;
            color: var(--primary);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,180,216,0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            direction: rtl;
            unicode-bidi: bidi-override;
            display: inline-block;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            padding: 0 5px;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-widgets {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-widget h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-widget h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bbb;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            article h1 { font-size: 2.4rem; }
            article h2 { font-size: 2rem; }
            .nav-links { gap: 20px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 100px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: 0.5s;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .header-top .container {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                margin-top: 20px;
                max-width: 100%;
            }
            .hero h1 { font-size: 2.4rem; }
            .hero p { font-size: 1.1rem; }
            article h1 { font-size: 2rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.6rem; }
            .form-section { padding: 30px 20px; }
        }
        @media (max-width: 576px) {
            .hero { padding: 60px 0; }
            .hero h1 { font-size: 2rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .link-list ul { grid-template-columns: 1fr; }
        }
