﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: #eaf2ee;
        }

        .globalContainerSportsMiaoKaLu {
            max-width: 1280px;
            margin: 0 auto;
            background-color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 40, 20, 0.05);
            display: flex;
            flex-direction: column;
        }

        .adaptiveNavigationWithMenuList {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            padding: 0.7rem 2.2rem;
            border-bottom: 1px solid #cde3d7;
            position: sticky;
            top: 0;
            z-index: 200;
        }

        .brandLogoWithIconWrapper {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(145deg, #1d5433, #2a7543);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .brandLogoWithIconWrapper span {
            font-size: 2.2rem;
            background: none;
            -webkit-text-fill-color: #23663c;
        }

        .navigationMenuItemsContainer {
            display: flex;
            gap: 0.2rem;
            list-style: none;
            flex-wrap: wrap;
        }
        .navigationMenuItemsContainer li a {
            display: block;
            padding: 0.5rem 1.2rem;
            text-decoration: none;
            color: #1f4d31;
            font-weight: 500;
            border-radius: 8px;
            transition: 0.15s;
            font-size: 1rem;
        }
        .navigationMenuItemsContainer li a:hover {
            background: #dcf0e5;
        }

        .mobileHamburgerToggleCheckbox {
            display: none;
        }
        .mobileHamburgerIconLabel {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #1e5f34;
        }

        @media (max-width: 700px) {
            .adaptiveNavigationWithMenuList {
                padding: 0.7rem 1.2rem;
            }
            .brandLogoWithIconWrapper {
                font-size: 1.05rem;
                line-height: 1.35;
                max-width: calc(100% - 3rem);
            }
            .mobileHamburgerIconLabel {
                display: block;
            }
            .navigationMenuItemsContainer {
                display: none;
                width: 100%;
                flex-direction: column;
                background: white;
                padding: 1rem 0 0.5rem;
                margin-top: 0.8rem;
                border-top: 1px solid #c0e0cf;
            }
            .mobileHamburgerToggleCheckbox:checked ~ .navigationMenuItemsContainer {
                display: flex;
            }
            .navigationMenuItemsContainer li a {
                padding: 0.9rem 1.5rem;
            }
        }

        .sectionTitleWithLeftIcon {
            font-size: 2rem;
            font-weight: 700;
            color: #1b4f2e;
            margin-bottom: 0.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sectionSubtitleGreenBorder {
            font-size: 1rem;
            color: #517559;
            margin-bottom: 1.8rem;
            border-left: 5px solid #2f8d54;
            padding-left: 1rem;
            background: #f3faf6;
            padding: 0.6rem 1rem;
            border-radius: 0 12px 12px 0;
        }

        .heroBannerSportPattern {
            background: linear-gradient( rgba(0, 20, 10, 0.65), rgba(0, 35, 20, 0.75) ), 
                        url('../image/bg.jpg') center/cover no-repeat;
            color: white;
            padding: 4rem 2.5rem;
            position: relative;
            isolation: isolate;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            min-height: 380px;
            display: flex;
            align-items: center;
        }
        .heroContentWrapper {
            max-width: 700px;
        }
        .heroMainHeadingLarge {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .heroMainHeadingLarge span {
            color: #fcd34d;
            font-size: 2.2rem;
            display: block;
            font-weight: 500;
            margin-top: 0.2rem;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        .heroSloganBordered {
            font-size: 1.3rem;
            margin-top: 1.8rem;
            border-left: 0px solid #fcd34d;
            padding-left: 1.5rem;
            text-shadow: 0 1px 5px rgba(0,0,0,0.4);
            line-height: 1.6;
        }
        .heroSloganBordered strong {
            color: #fcd34d;
            font-weight: 700;
        }
        .heroFeaturesList {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 2rem;
            margin-top: 2.2rem;
        }
        .heroFeatureItem {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            border: 1px solid rgba(255,255,200,0.3);
            font-size: 1.1rem;
        }
        .heroFeatureItem span {
            font-size: 1.6rem;
        }

        @media (max-width: 600px) {
            .heroBannerSportPattern {
                padding: 3rem 1.5rem;
                min-height: 320px;
            }
            .heroMainHeadingLarge {
                font-size: 2.2rem;
            }
            .heroMainHeadingLarge span {
                font-size: 1.8rem;
            }
            .heroSloganBordered {
                font-size: 1.1rem;
            }
            .heroFeaturesList {
                gap: 1rem;
            }
            .heroFeatureItem {
                padding: 0.4rem 1rem;
                font-size: 0.95rem;
            }
        }

        .aboutSectionFlexRow {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .aboutTextContent {
            flex: 1.2;
        }
        .aboutImageContent {
            flex: 0.9;
        }
        .aboutImageContent img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0, 30, 10, 0.15);
            border: 2px solid #c0e2d0;
        }

        .aboutUsFloatingInfoCard {
            background: #f7fdfa;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #c8e4d5;
            box-shadow: 0 5px 18px rgba(0,30,10,0.04);
        }
        .aboutHighlightsFlexWrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
            margin-top: 1.8rem;
        }
        .highlightPillStyle {
            background: white;
            border-radius: 30px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            color: #166132;
            border: 1px solid #bde0cd;
        }

        @media (max-width: 800px) {
            .aboutSectionFlexRow {
                flex-direction: column;
            }
            .aboutImageContent {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        .productGridThreeColumns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
        .productCardWithImage {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2f0e7;
            box-shadow: 0 4px 12px rgba(0,30,0,0.02);
            transition: 0.1s;
        }
        .productCardWithImage:hover {
            border-color: #7ebe9a;
        }
        .productImageBox {
            width: 100%;
            height: 160px;
            background: #ecf9f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-bottom: 1px solid #d6ecdf;
        }
        .productImageBox img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .productInfoBox {
            padding: 1rem 0.8rem 1.2rem;
            text-align: center;
        }
        .productInfoBox h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a5a32;
        }
        .productInfoBox p {
            color: #4f6d5c;
            font-size: 0.9rem;
        }

        @media (max-width: 700px) {
            .productGridThreeColumns {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }
        @media (max-width: 450px) {
            .productGridThreeColumns {
                grid-template-columns: 1fr;
            }
        }

        .caseGridDoubleColumn {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .caseItemCard {
            background: white;
            border-radius: 12px;
            padding: 1.4rem;
            border-left: 8px solid #2b8b50;
            border: 1px solid #d0ead9;
        }
        .caseItemCard span:first-child {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .caseTag {
            background: #dcf0e5;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin-left: 0.5rem;
            font-size: 0.85rem;
        }
        @media (max-width: 600px) {
            .caseGridDoubleColumn {
                grid-template-columns: 1fr;
            }
        }

        .serviceGuaranteeGridSix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
        .guaranteeExpandedItem {
            background: #f3fdf8;
            border-radius: 12px;
            padding: 1.5rem 1rem;
            text-align: center;
            border: 1px solid #c3e3d3;
        }
        .guaranteeExpandedItem .emojiBig {
            font-size: 3rem;
            display: block;
            margin-bottom: 0.3rem;
        }
        .guaranteeTitle {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1b6134;
        }
        .guaranteeDesc {
            color: #446655;
            font-size: 0.88rem;
            margin-top: 0.2rem;
        }

        @media (max-width: 680px) {
            .serviceGuaranteeGridSix {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 450px) {
            .serviceGuaranteeGridSix {
                grid-template-columns: 1fr;
            }
        }

        .contactSectionWithFormWrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            background: #ecf7f1;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #b8dbc9;
        }
        .contactInfoBlock {
            background: white;
            border-radius: 12px;
            padding: 1.6rem;
        }
        .contactRow {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #f0f9f3;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            margin: 1rem 0;
        }
        .contactRow span:last-child,
        .contactRow a {
            word-break: break-word;
            overflow-wrap: anywhere;
        }
        .contactInfoBlock a {
            color: #156b3a;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .contactIconCircleSmall {
            background: #d1eedd;
            width: 2.8rem;
            height: 2.8rem;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        .contactFormBlock {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 4px 12px rgba(0,30,0,0.02);
        }
        .formFieldGroup {
            margin-bottom: 1.2rem;
        }
        .formFieldGroup label {
            display: block;
            font-weight: 600;
            color: #1b4f30;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .formFieldGroup input,
        .formFieldGroup textarea,
        .formFieldGroup select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #c7e0d4;
            border-radius: 10px;
            font-size: 1rem;
            background: #fcfefd;
        }
        .formFieldGroup textarea {
            min-height: 90px;
            resize: vertical;
        }
        .submitButtonStyle {
            background: #1f673b;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            width: 100%;
            transition: background 0.1s;
        }
        .submitButtonStyle:hover {
            background: #134e29;
        }

        @media (max-width: 720px) {
            .contactSectionWithFormWrapper {
                grid-template-columns: 1fr;
            }
            .contactRow {
                align-items: flex-start;
            }
        }

        .footerBackgroundWithLegal {
            background: linear-gradient( rgba(5, 30, 18, 0.85), rgba(0, 30, 15, 0.9) ), 
                        url('../image/bg.jpg') center/cover no-repeat;
            color: #f0f7ef;
            padding: 2.5rem 2rem 1.8rem;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            margin-top: 1.8rem;
        }
        .footerLegalLinks {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.8rem;
        }
        .footerLegalLinks a {
            color: #e2ffea;
            text-decoration: none;
            border-bottom: 1px dotted #9fcdb4;
        }
        .footerCopyright {
            text-align: center;
            opacity: 0.85;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,220,0.2);
            padding-top: 1.5rem;
        }

        .socialBadgeMini {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0 0.5rem;
        }
        .socialBadgeMini span {
            background: rgba(40, 70, 50, 0.1);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            border: 1px solid #b2d9c1;
        }

        section {
            padding: 2.2rem 2.5rem;
        }
        @media (max-width: 600px) {
            section {
                padding: 2rem 1.2rem;
            }
        }