        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #0a6cbe; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #e63946; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin: 1rem 0; }
        li { margin-bottom: 0.5rem; }
        h1, h2, h3, h4 { color: #1d3557; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-top: 2rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); padding-top: 2rem; border-top: 3px solid #e63946; margin-top: 3rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #457b9d; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #6a8aaf; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.4rem; font-weight: 300; color: #555; }
        .highlight { background-color: #fffbcc; padding: 0.2rem 0.5rem; border-radius: 3px; }
        strong { color: #1d3557; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        main.container { flex: 1; }
        header { background: linear-gradient(90deg, #1d3557 0%, #457b9d 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; }
        .logo a { font-size: 2rem; font-weight: 900; color: #fff; text-decoration: none; font-style: italic; }
        .logo a:hover { color: #a8dadc; text-decoration: none; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { color: #f1faee; padding: 0.5rem 1rem; border-radius: 4px; }
        .nav-desktop a:hover { background-color: rgba(255,255,255,0.15); text-decoration: none; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; }
        .nav-mobile { display: none; flex-direction: column; background-color: #1d3557; padding: 1rem; position: absolute; top: 100%; left: 0; right: 0; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: #f1faee; padding: 1rem; border-bottom: 1px solid #457b9d; }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #666; }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: #0a6cbe; }
        .hero { background: linear-gradient(rgba(29, 53, 87, 0.85), rgba(69, 123, 157, 0.9)), url('https://images.unsplash.com/photo-1641284673311-2d6b97c39d4f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; color: white; text-align: center; padding: 4rem 2rem; border-radius: 10px; margin: 2rem 0; }
        .hero h1 { color: #fff; border: none; margin-top: 0; }
        .hero .lead { color: #f1faee; }
        .grid-2, .grid-3 { display: grid; gap: 2rem; margin: 2rem 0; }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .card { background: white; border-radius: 10px; padding: 2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e0e0e0; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 12px 20px rgba(0,0,0,0.1); }
        .icon-box { text-align: center; padding: 1.5rem; }
        .icon-box i { font-size: 3rem; color: #e63946; margin-bottom: 1rem; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #1d3557; }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #457b9d; }
        button, .btn {
            background: linear-gradient(to right, #e63946, #d62828);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover, .btn:hover { background: linear-gradient(to right, #d62828, #c1121f); transform: scale(1.03); text-decoration: none; }
        .search-box { display: flex; max-width: 500px; margin: 2rem auto; }
        .search-box input { border-radius: 6px 0 0 6px; flex: 1; }
        .search-box button { border-radius: 0 6px 6px 0; padding-left: 1.5rem; padding-right: 1.5rem; }
        .rating-stars { font-size: 1.5rem; color: #ffc107; cursor: pointer; margin: 0.5rem 0; }
        .rating-stars span { margin-right: 0.2rem; }
        .rating-stars span:hover { color: #ff9800; }
        .schedule-table { overflow-x: auto; margin: 3rem 0; }
        table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
        th, td { padding: 1rem; text-align: left; border-bottom: 1px solid #eee; }
        th { background-color: #1d3557; color: white; font-weight: 600; }
        tr:hover { background-color: #f9f9f9; }
        .img-float { float: right; margin: 0 0 1rem 2rem; max-width: 400px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .clearfix::after { content: ""; clear: both; display: table; }
        footer { background-color: #1d3557; color: #f1faee; padding: 3rem 0 1.5rem; margin-top: 4rem; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 3rem; margin-bottom: 2rem; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #a8dadc; border-top: none; padding-top: 0; }
        friend-link { display: block; padding: 0.5rem 0; color: #a8dadc; }
        friend-link a { color: #a8dadc; }
        friend-link a:hover { color: white; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #457b9d; font-size: 0.9rem; color: #aaa; }
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .img-float { float: none; margin: 1rem auto; max-width: 100%; }
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; gap: 2rem; }
        }
