
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #F0F7F4;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            color: #1A2F2C;
            line-height: 1.4;
        }

        :root {
            --teal-primary: #1E7F7A;
            --teal-deep: #0F5E5A;
            --teal-soft: #B2DFDB;
            --teal-light: #D9F0EE;
            --accent-mint: #48B5A7;
            --gray-dark: #2C3E3A;
            --shadow-sm: 0 12px 28px rgba(0, 40, 30, 0.08);
            --shadow-hover: 0 20px 32px rgba(0, 55, 45, 0.12);
        }

        .content-module {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem 3rem;
        }

        .hero {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        .hero-badge {
            display: inline-block;
            background: var(--teal-light);
            color: var(--teal-deep);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: #3B5C57;
            max-width: 680px;
            margin: 0 auto;
            font-weight: 450;
        }
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal-primary), var(--accent-mint));
            margin: 1.8rem auto 0;
            border-radius: 4px;
        }

        .grid-2col {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .info-card {
            background: white;
            border-radius: 32px;
            padding: 2rem 2rem 2rem 2rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid rgba(30, 127, 122, 0.15);
            height: 100%;
        }
        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--teal-soft);
        }
        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.6rem;
            border-bottom: 2px solid var(--teal-light);
            padding-bottom: 0.8rem;
        }
        .card-header i {
            font-size: 2rem;
            color: var(--teal-primary);
            background: var(--teal-light);
            padding: 10px;
            border-radius: 20px;
        }
        .card-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--teal-deep);
            letter-spacing: -0.3px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }
        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            color: #1F3A36;
            line-height: 1.45;
        }
        .feature-list li i {
            font-size: 1.35rem;
            color: var(--teal-primary);
            margin-top: 2px;
            background: none;
            padding: 0;
            flex-shrink: 0;
        }
        .feature-list li strong {
            color: #0F5E5A;
            font-weight: 700;
        }

        .scene-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        .scene-tag {
            background: var(--teal-light);
            color: var(--teal-deep);
            padding: 0.7rem 1.4rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            border: 1px solid rgba(30,127,122,0.2);
        }
        .scene-tag i {
            font-size: 1rem;
            color: var(--teal-primary);
        }
        .scene-tag:hover {
            background: var(--teal-primary);
            color: white;
            border-color: var(--teal-primary);
        }
        .scene-tag:hover i {
            color: white;
        }

        .advantage-card {
            background: linear-gradient(125deg, #FFFFFF 0%, #F5FEFC 100%);
            border-radius: 32px;
            padding: 2.2rem 2.5rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-sm);
            border-left: 6px solid var(--teal-primary);
            transition: all 0.25s;
        }
        .advantage-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.2rem;
        }
        .advantage-header i {
            font-size: 2.2rem;
            color: var(--teal-primary);
            background: var(--teal-light);
            padding: 10px;
            border-radius: 28px;
        }
        .advantage-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--teal-deep);
        }
        .advantage-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #2C4A45;
            padding-left: 0.25rem;
            margin-bottom: 0.5rem;
        }
        .advantage-highlight {
            display: inline-block;
            background: var(--teal-light);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--teal-deep);
            margin-top: 0.8rem;
        }

        .gallery-section {
            margin-top: 1rem;
        }
        .gallery-block {
            margin-bottom: 2.5rem;
        }
        .gallery-title {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            justify-content: space-between;
            border-bottom: 2px solid var(--teal-soft);
            padding-bottom: 0.6rem;
        }
        .gallery-title h3 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--teal-deep);
            letter-spacing: -0.2px;
        }
        .gallery-title span {
            font-size: 0.9rem;
            color: #5F8A82;
            background: #E9F4F2;
            padding: 0.2rem 1rem;
            border-radius: 50px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.6rem;
        }
        .gallery-item {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            border: 1px solid #e0efec;
        }
        .gallery-item:hover {
            transform: scale(1.01);
            box-shadow: 0 16px 28px rgba(30, 127, 122, 0.12);
            border-color: var(--teal-soft);
        }
        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.02);
        }
        .img-caption {
            padding: 0.7rem 1rem;
            font-size: 0.75rem;
            color: #5A827A;
            background: #FEFEFE;
            text-align: center;
            border-top: 1px solid #eef5f2;
            font-weight: 500;
        }

        @media (max-width: 800px) {
            .grid-2col {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-module {
                padding: 1.5rem 1rem 2rem;
            }
            .advantage-card {
                padding: 1.5rem;
            }
            .card-header h2 {
                font-size: 1.5rem;
            }
            .gallery-title h3 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .feature-list li {
                font-size: 0.92rem;
            }
            .scene-tag {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
            }
        }

        ::selection {
            background: var(--teal-primary);
            color: white;
        }
    