* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #faf7f2;
            color: #2e241f;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #b25d2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3d1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1f2a2e 0%, #2d3f44 100%);
            color: #f5ede4;
            padding: 18px 0;
            border-bottom: 4px solid #c4824a;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #e8b86d, #c4824a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #b8a99a;
            color: #b8a99a;
            letter-spacing: 1px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c4824a;
            color: #f5ede4;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #c4824a;
            color: #1f2a2e;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #e8dccc;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: rgba(196, 130, 74, 0.2);
            border-color: #c4824a;
            color: #f5ede4;
            text-decoration: none;
        }
        .breadcrumb {
            background: #ede7df;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d9cfc4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #b25d2b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a3d1a;
        }
        .breadcrumb .current {
            color: #4a3630;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        .hero {
            background: linear-gradient(135deg, #2d3f44, #1f2a2e);
            color: #f5ede4;
            padding: 50px 30px;
            border-radius: 20px;
            margin-bottom: 45px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♟︎";
            font-size: 12rem;
            opacity: 0.05;
            position: absolute;
            right: -20px;
            bottom: -40px;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #e8b86d;
            line-height: 1.2;
            margin-bottom: 15px;
            position: relative;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            color: #d9cfc4;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            font-size: 0.95rem;
            color: #b8a99a;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #c4824a;
        }
        .last-updated {
            display: inline-block;
            background: rgba(196, 130, 74, 0.15);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #e8b86d;
        }
        .section-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px 30px;
            margin-bottom: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede7df;
            transition: 0.2s;
        }
        .section-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        h2 {
            font-size: 2rem;
            color: #1f2a2e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #c4824a;
            display: inline-block;
        }
        h2 i {
            color: #c4824a;
            margin-right: 12px;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d3f44;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            color: #4a3630;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 16px;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .feature-item {
            background: #f8f4ef;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #c4824a;
            transition: 0.2s;
        }
        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .feature-item i {
            font-size: 1.8rem;
            color: #b25d2b;
            margin-bottom: 10px;
        }
        .feature-item h4 {
            margin: 8px 0 6px;
        }
        .highlight {
            background: #fdf6ed;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
            color: #7a3d1a;
        }
        .interview-block {
            background: #f0ebe4;
            padding: 25px;
            border-radius: 14px;
            margin: 20px 0;
            border-left: 6px solid #c4824a;
            font-style: italic;
        }
        .interview-block strong {
            font-style: normal;
            color: #2d3f44;
        }
        .img-wrapper {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
        }
        .img-wrapper figcaption {
            background: #f8f4ef;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #5a4a42;
            text-align: center;
            border-top: 1px solid #ede7df;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #fff;
            border: 1px solid #e8ddd2;
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            transition: 0.2s;
        }
        .stat-card:hover {
            border-color: #c4824a;
            transform: scale(1.02);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b25d2b;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #6a5a52;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 18px 0;
        }
        .link-list a {
            background: #f0ebe4;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #d9cfc4;
            transition: 0.2s;
        }
        .link-list a:hover {
            background: #c4824a;
            color: #fff;
            border-color: #c4824a;
            text-decoration: none;
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            border: 1px solid #ede7df;
            margin-bottom: 30px;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
            color: #2d3f44;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8ddd2;
            border-radius: 10px;
            font-size: 1rem;
            background: #faf7f2;
            transition: 0.2s;
            margin-bottom: 16px;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #c4824a;
            background: #fff;
        }
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #c4824a;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #a86a38;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 130, 74, 0.35);
        }
        .btn-secondary {
            background: #2d3f44;
        }
        .btn-secondary:hover {
            background: #1f2a2e;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 10px 0 20px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d9cfc4;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8b86d;
        }
        footer {
            background: #1f2a2e;
            color: #d9cfc4;
            padding: 40px 0 20px;
            border-top: 4px solid #c4824a;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #e8b86d;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer a {
            color: #b8a99a;
        }
        footer a:hover {
            color: #e8b86d;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #3a4a4f;
            border-bottom: 1px solid #3a4a4f;
            margin-bottom: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: rgba(196, 130, 74, 0.1);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #8a7a72;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.04);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero {
                padding: 30px 20px;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section-card {
                padding: 20px 16px;
            }
            .header-inner {
                gap: 10px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-card {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .schema-hidden {
            display: none;
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #c4824a;
            color: #fff;
        }
