* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1d428a;
            --secondary: #c9082a;
            --accent: #ffb81c;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #0a2a5a 100%);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--accent);
        }
        .search-box {
            display: flex;
            width: 300px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.7rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #a00622;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(0, 0, 0, 0.2);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            padding: 1rem 0;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .content {
            background-color: white;
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        h3 {
            color: var(--secondary);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.4rem;
        }
        h4 {
            color: var(--dark);
            margin: 1.2rem 0 0.6rem;
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary);
            background-color: #f0f7ff;
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            border-radius: 4px;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 6px;
            border: 1px dashed var(--accent);
            margin: 1.5rem 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #f0f7ff, #ffffff);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary);
            padding: 2rem;
            border-left: 5px solid var(--secondary);
            background-color: #f9f9f9;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .author {
            text-align: right;
            font-weight: 600;
            color: var(--dark);
            margin-top: 1rem;
        }
        .link-list {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 6px;
            margin: 2rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            column-count: 2;
        }
        .link-list li {
            margin-bottom: 0.7rem;
        }
        .link-list a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .link-list a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .interactive-section {
            background-color: #f0f7ff;
            border-radius: 8px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #cfe2ff;
        }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(29, 66, 138, 0.1);
        }
        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background-color: #0a2a5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .btn-accent {
            background-color: var(--secondary);
        }
        .btn-accent:hover {
            background-color: #a00622;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .team-list {
            list-style: none;
            margin-top: 1rem;
        }
        .team-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .team-list li:last-child {
            border-bottom: none;
        }
        .team-badge {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        .schedule-table th,
        .schedule-table td {
            padding: 0.8rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .schedule-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: var(--primary);
        }
        .schedule-table tr:hover {
            background-color: #f0f7ff;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            display: block;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 2rem 0;
            padding-top: 2rem;
            border-top: 1px solid #495057;
        }
        .friend-link-title {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .friend-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-link-list a {
            background-color: #495057;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            text-decoration: none;
            transition: var(--transition);
        }
        .friend-link-list a:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                width: 100%;
                margin-top: 1rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                box-shadow: var(--shadow);
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 1rem 1.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-links a::after {
                display: none;
            }
            .nav-active {
                display: block;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .link-list ul {
                column-count: 1;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
