* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #0056b3;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #003366;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0c2340 0%, #1a3a5f 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #fff;
            text-transform: uppercase;
            background: linear-gradient(90deg, #ff6b35, #f9c74f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .burger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f9c74f;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #f9c74f;
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            margin-top: 0.5rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #0c2340;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #888;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        h1 {
            color: #0c2340;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #f9c74f;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #1a3a5f;
            font-size: 2.1rem;
            margin: 2.5rem 0 1.2rem 0;
            padding-left: 0.5rem;
            border-left: 5px solid #ff6b35;
        }
        h3 {
            color: #2a4a7a;
            font-size: 1.7rem;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            color: #3a5a8a;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.4rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            background-color: #f8f9fa;
            padding: 1.2rem;
            border-left: 4px solid #0056b3;
            margin-bottom: 2rem;
            border-radius: 0 8px 8px 0;
        }
        img.responsive {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px dashed #f9c74f;
            margin: 1.5rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card h4 {
            color: #0c2340;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ff6b35;
            line-height: 1;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #1a3a5f;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-size: 1.2rem;
        }
        .interactive-box {
            background-color: #f0f8ff;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #cce5ff;
        }
        .interactive-box h3 {
            color: #0056b3;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #0056b3;
            box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ff6b35, #f9c74f);
            color: white;
            padding: 0.9rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(255,107,53,0.2);
        }
        .btn:hover {
            background: linear-gradient(to right, #e55a2b, #e0b640);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255,107,53,0.3);
            text-decoration: none;
            color: white;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            cursor: pointer;
            padding: 0 2px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #f9c74f;
        }
        footer {
            background-color: #0c2340;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #f9c74f;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: #f9c74f;
            padding-left: 5px;
            transition: all 0.3s;
        }
        friend-link {
            display: block;
            background-color: #1a3a5f;
            padding: 1rem;
            border-radius: 6px;
            margin: 1rem 0;
            border-left: 4px solid #f9c74f;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a3a5f;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .burger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a3a5f;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
            }
            nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
