
        /* CSS Variables: Oticon Brand Colors */
        :root {
            --oticon-magenta: #C6168D;
            /* 공식 오티콘 브랜드 컬러 */
            --oticon-dark: #1A1A1A;
            --oticon-gray: #F4F4F4;
            --text-main: #333333;
            --text-muted: #666666;
            --white: #FFFFFF;
            --border: #E5E5E5;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul,
        ol {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Utility Classes */
        .text-magenta {
            color: var(--oticon-magenta);
        }

        .bg-gray {
            background-color: var(--oticon-gray);
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--oticon-dark);
            margin-bottom: 15px;
        }

        .section-header h2 span {
            color: var(--oticon-magenta);
            font-family: 'Poppins', sans-serif;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
            gap: 10px;
        }

        .btn-primary {
            background-color: var(--oticon-magenta);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #9e1271;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(198, 22, 141, 0.2);
        }

        .btn-outline {
            border-color: var(--oticon-magenta);
            color: var(--oticon-magenta);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--oticon-magenta);
            color: var(--white);
        }

        /* Top Info Bar */
        .top-bar {
            background-color: var(--oticon-dark);
            color: #ccc;
            padding: 10px 0;
            font-size: 0.85rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-info {
            display: flex;
            gap: 20px;
        }

        .top-info i {
            color: var(--oticon-magenta);
            margin-right: 5px;
        }

        .top-links a:hover {
            color: var(--white);
        }



        /* Hero Slider */
        .hero-section {
            position: relative;
            height: 100vh;
        }

        .hero-swiper {
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: relative;
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-section .container {
          width: 100% !important;
        }

        .hero-content {
            color: var(--white);
            width: 100%;
            max-width: 1240px;
            z-index: 10;
            padding-top: 50px;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(198, 22, 141, 0.2);
            border: 1px solid var(--oticon-magenta);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ff85d5;
        }

        .hero-content h1 {
            font-size: 5rem;
            line-height: 1.2;
            margin-bottom: 50px;
        }

        .hero-content p {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 66ch;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--oticon-magenta) !important;
        }

        /* Brand Identity (BrainHearing) */
        .brand-section {
            padding: 100px 0;
            background: var(--white);
        }

        .brand-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .brand-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .brand-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .brand-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--oticon-dark);
        }

        .brand-text h3 span {
            color: var(--oticon-magenta);
            font-family: 'Poppins';
        }

        .brand-text>p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .feature-item-main {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            background: var(--oticon-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--oticon-magenta);
        }

        .feature-item-main h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .feature-item-main p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Products Section */
        .products-section {
            padding: 100px 0;
            background: var(--bg-gray);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--oticon-magenta);
        }

        .product-img {
            height: 250px;
            padding: 0px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img img {
            max-height: 100%;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 30px;
            border-top: 1px solid var(--border);
        }

        .product-info h3 {
            font-size: 1.5rem;
            font-family: 'Poppins';
            margin-bottom: 10px;
        }

        .product-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        /* Franchise Specific Services */
        .services-section {
            padding: 100px 0;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-box {
            text-align: center;
            padding: 50px 30px;
            background: var(--white);
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .service-box:hover {
            background: var(--oticon-magenta);
            color: var(--white);
        }

        .service-box i {
            font-size: 3rem;
            color: var(--oticon-magenta);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .service-box:hover i {
            color: var(--white);
        }

        .service-box h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .service-box:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Interiors */

        /* Location & Contact */
        .contact-section {
            padding: 100px 0;
            background: var(--bg-gray);
        }

        .contact-wrapper {
            display: flex;
            gap: 20px;
            background: var(--white);
            overflow: hidden;
            padding-left: 13vw;
        }

        .contact-info {
            flex: 0.7;
            padding: 60px ;
            box-sizing: border-box;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--oticon-dark);
        }

        .contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-list i {
            font-size: 1.5rem;
            color: var(--oticon-magenta);
            margin-top: 5px;
        }

        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-text p {
            color: var(--text-muted);
        }

        .map-area {
            flex: 1;
            min-height: 500px;
            background: url(../img/map_bg.jpg);
            background-size: cover;
            position: relative;
        }

        .map-area img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3.1rem;
            }
            .hero-content p {
              font-size: 19px;
            }

            .brand-grid,
            .contact-wrapper {
                grid-template-columns: 1fr;
                flex-direction: column;
            }

            .g-span-2 {
                grid-column: span 2;
                grid-row: span 1;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
.hero-section {
  height: 100vh !important;
}
.contact-wrapper {
  padding-left: 0;
}
            .mobile-btn {
                display: block;
            }

            .top-bar {
                display: none;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }


        }
