﻿        :root {
            --primary: #00857a;
            --primary-dark: #006b62;
            --primary-light: #00a699;
            --primary-pale: #e6f5f3;
            --black: #222222;
            --gray-dark: #444444;
            --gray: #666666;
            --gray-light: #999999;
            --gray-pale: #f5f5f5;
            --white: #ffffff;
            --border: #e5e5e5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: 'Noto Sans JP', sans-serif; 
            line-height: 1.8; 
            color: var(--black); 
            background: var(--white);
            background-image: 
                /* ドットパターン */
                radial-gradient(circle, rgba(0, 133, 122, 0.1) 1.5px, transparent 1.5px),
                /* 斜めライン */
                linear-gradient(135deg, rgba(0, 133, 122, 0.06) 25%, transparent 25%),
                linear-gradient(225deg, rgba(0, 133, 122, 0.06) 25%, transparent 25%);
            background-size: 24px 24px, 60px 60px, 60px 60px;
            background-position: 0 0, 0 0, 30px 30px;
        }

        /* Header Top Bar */
        .header-top {
            background: var(--primary);
            color: white;
            font-size: 13px;
        }
        .header-top-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 8px 40px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 24px;
        }
        .header-top-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        .header-top-item:hover { opacity: 0.8; }
        .header-top-item svg { width: 16px; height: 16px; }

        /* Header */
        header {
            position: fixed; width: 100%; top: 0; z-index: 1000;
            background: var(--white);
            transition: all 0.3s ease;
        }
        header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        header.scrolled .header-top { display: none; }
        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
        .logo-img { height: 44px; width: auto; }
        .footer-logo-img { filter: brightness(0) invert(1); opacity: 1; height: 40px; }
        .footer-logo-text { display: flex; align-items: center; gap: 12px; }
        .footer-logo-mark-img { 
            width: 48px;
            height: 48px;
            border-radius: 8px;
        }
        .footer-logo-name { 
            color: white; 
            font-size: 15px; 
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .logo-mark {
            width: 50px; height: 50px;
            background: var(--primary);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; color: white;
        }
        .logo-text { display: flex; flex-direction: column; }
        .logo-main { font-size: 18px; font-weight: 700; color: var(--black); }
        .logo-sub { font-family: 'Outfit', sans-serif; font-size: 10px; color: var(--gray); }
        nav ul { display: flex; list-style: none; gap: 36px; }
        nav a { font-size: 14px; font-weight: 500; color: var(--black); text-decoration: none; transition: color 0.3s ease; }
        nav a:hover { color: var(--primary); }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 120px;
            background: linear-gradient(160deg, #f0f9f8 0%, #e8f4f3 50%, #f5f5f5 100%);
            overflow: hidden;
        }
        .hero-decoration {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
        /* 幾何学的なダイヤモンドパターン背景 */
        .hero-geometric-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .hero-geometric-pattern::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 120%;
            height: 140%;
            background: 
                /* 大きなダイヤモンド */
                linear-gradient(135deg, transparent 47%, rgba(0, 133, 122, 0.08) 47%, rgba(0, 133, 122, 0.08) 53%, transparent 53%),
                linear-gradient(45deg, transparent 47%, rgba(0, 133, 122, 0.08) 47%, rgba(0, 133, 122, 0.08) 53%, transparent 53%),
                /* 中くらいのダイヤモンド */
                linear-gradient(135deg, transparent 45%, rgba(0, 133, 122, 0.05) 45%, rgba(0, 133, 122, 0.05) 55%, transparent 55%),
                linear-gradient(45deg, transparent 45%, rgba(0, 133, 122, 0.05) 45%, rgba(0, 133, 122, 0.05) 55%, transparent 55%);
            background-size: 200px 200px, 200px 200px, 120px 120px, 120px 120px;
            transform: rotate(-15deg);
        }
        /* 装飾的なダイヤモンド要素 */
        .hero-diamond {
            position: absolute;
            border: 2px solid rgba(0, 133, 122, 0.15);
            transform: rotate(45deg);
        }
        .hero-diamond.d1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: 5%;
            border-color: rgba(0, 133, 122, 0.12);
        }
        .hero-diamond.d2 {
            width: 200px;
            height: 200px;
            top: 35%;
            right: 25%;
            border-color: rgba(0, 133, 122, 0.08);
        }
        .hero-diamond.d3 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            right: 15%;
            background: rgba(0, 133, 122, 0.03);
            border-color: rgba(0, 133, 122, 0.1);
        }
        .hero-diamond.d4 {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 35%;
            background: rgba(0, 133, 122, 0.05);
            border: none;
        }
        .hero-diamond.d5 {
            width: 120px;
            height: 120px;
            bottom: 30%;
            right: 40%;
            border-color: rgba(0, 133, 122, 0.06);
        }
        /* 斜めのライン */
        .hero-diagonal-lines {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
        }
        .hero-diagonal-lines::before,
        .hero-diagonal-lines::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(0, 133, 122, 0.1), transparent);
        }
        .hero-diagonal-lines::before {
            top: 30%;
            right: -50%;
            transform: rotate(-20deg);
        }
        .hero-diagonal-lines::after {
            bottom: 40%;
            right: -50%;
            transform: rotate(-20deg);
        }
        .hero-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(0, 133, 122, 0.1);
        }
        .hero-circle.c1 { width: 600px; height: 600px; top: -200px; right: -100px; }
        .hero-circle.c2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
        .hero-circle.c3 { width: 200px; height: 200px; top: 30%; right: 20%; background: rgba(0, 133, 122, 0.03); }
        .hero-dots {
            display: none;
        }
        .hero-dots span {
            width: 8px;
            height: 8px;
            background: rgba(0, 133, 122, 0.15);
            border-radius: 50%;
        }
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px 80px 20px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-content {
            text-align: left;
            padding-right: 60px;
            margin-left: -20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--primary-pale);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 24px;
        }
        .hero-badge svg { width: 14px; height: 14px; }
        .hero-catchphrase {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 700;
            line-height: 1.5;
            color: var(--black);
            margin-bottom: 24px;
        }
        .hero-catchphrase .accent { color: var(--primary); }
        .hero-desc {
            font-size: 15px;
            line-height: 2;
            color: var(--gray);
            margin-bottom: 40px;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
        }
        .hero-stat {
            text-align: center;
            padding: 24px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            min-width: 120px;
        }
        .hero-stat-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-pale);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }
        .hero-stat-icon svg { width: 24px; height: 24px; stroke: var(--primary); }
        .hero-stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 600;
            color: var(--primary);
            line-height: 1;
        }
        .hero-stat-number span { font-size: 16px; }
        .hero-stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; }
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-illustration {
            position: relative;
            width: 100%;
            max-width: 480px;
        }
        .hero-illustration-main {
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 133, 122, 0.2);
        }
        .hero-illustration-main img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 24px;
        }
        .hero-floating-card {
            position: absolute;
            background: white;
            padding: 16px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hero-floating-card.card1 { top: 20px; right: -20px; }
        .hero-floating-card.card2 { bottom: 40px; left: -20px; }
        .hero-floating-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-floating-icon svg { width: 20px; height: 20px; stroke: var(--primary); }
        .hero-floating-text { font-size: 13px; font-weight: 600; color: var(--black); }

        /* News Bar */
        .news-bar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }
        .news-bar-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .news-bar-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 1px;
            flex-shrink: 0;
        }
        .news-bar-label svg { width: 18px; height: 18px; }
        .news-bar-list { display: flex; gap: 40px; overflow: hidden; }
        .news-bar-item { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
        .news-bar-date { font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--gray-light); }
        .news-bar-text { font-size: 14px; color: var(--gray-dark); }
        .news-bar-more {
            margin-left: auto;
            font-size: 13px;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .news-bar-more svg { width: 16px; height: 16px; }
        .news-bar-more:hover { text-decoration: underline; }

        /* Section Common */
        section { padding: 120px 0; }
        .section-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .section-header { margin-bottom: 64px; }
        .section-header.center { text-align: center; }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .section-label svg { width: 18px; height: 18px; }
        .section-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            color: var(--black);
        }
        .section-desc {
            font-size: 15px;
            color: var(--gray);
            margin-top: 16px;
            max-width: 600px;
        }
        .section-header.center .section-desc { margin-left: auto; margin-right: auto; }

        /* About */
        .about { 
            background: var(--white);
            position: relative;
        }
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(ellipse at 10% 90%, rgba(0, 133, 122, 0.1) 0%, transparent 45%),
                radial-gradient(ellipse at 90% 10%, rgba(0, 133, 122, 0.08) 0%, transparent 45%);
            pointer-events: none;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .about-visual { position: relative; }
        .about-image {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 20px;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .about-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
        }
        .about-image-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
        }
        .about-image-icon {
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .about-image-icon svg { width: 48px; height: 48px; stroke: white; }
        .about-image-text {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 2px;
        }
        .about-features {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }
        .about-feature-badge {
            background: white;
            padding: 12px 20px;
            border-radius: 30px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
        }
        .about-feature-badge svg { width: 18px; height: 18px; stroke: var(--primary); }
        .about-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        .about-content .section-header {
            margin-bottom: 16px;
        }
        .about-content .section-header .section-title {
            margin-bottom: 0;
        }
        .about-content p {
            font-size: 15px;
            color: var(--gray);
            line-height: 2;
            margin-bottom: 20px;
        }
        .about-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 32px;
        }
        .about-point {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: var(--gray-pale);
            border-radius: 12px;
        }
        .about-point-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .about-point-icon svg { width: 20px; height: 20px; stroke: white; }
        .about-point span { font-size: 13px; font-weight: 600; color: var(--black); }

        /* Services */
        .services { 
            background: var(--gray-pale);
            background-image: 
                linear-gradient(135deg, rgba(0, 133, 122, 0.02) 25%, transparent 25%),
                linear-gradient(225deg, rgba(0, 133, 122, 0.02) 25%, transparent 25%),
                linear-gradient(45deg, rgba(0, 133, 122, 0.02) 25%, transparent 25%),
                linear-gradient(315deg, rgba(0, 133, 122, 0.02) 25%, transparent 25%);
            background-size: 40px 40px;
            background-position: 0 0, 20px 0, 20px -20px, 0 20px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 133, 122, 0.12);
        }
        .service-card-image {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 210px;
            height: 135px;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid var(--primary-pale);
        }
        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }
        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-pale);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            background: var(--primary);
        }
        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--primary);
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon svg { stroke: white; }
        .service-number {
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-light);
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }
        .service-card p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
            max-width: calc(100% - 100px);
        }

        /* Company */
        .company { 
            background: var(--white);
            position: relative;
        }
        .company::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(0, 133, 122, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 133, 122, 0.12) 0%, transparent 50%);
            pointer-events: none;
        }
        .company-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
        }
        .company-table { width: 100%; }
        .company-row {
            display: flex;
            align-items: flex-start;
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
            gap: 20px;
        }
        .company-row:first-child { border-top: 1px solid var(--border); }
        .company-row-icon {
            width: 44px;
            height: 44px;
            background: var(--primary-pale);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .company-row-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
        .company-row-content { flex: 1; }
        .company-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }
        .company-value {
            font-size: 14px;
            color: var(--gray-dark);
            line-height: 1.8;
        }
        .company-access {
            background: var(--gray-pale);
            border-radius: 20px;
            overflow: hidden;
        }
        .company-access-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 40px 32px;
            text-align: left;
            color: white;
            position: relative;
        }
        .company-access-header svg { width: 40px; height: 40px; margin-bottom: 16px; }
        .company-access-header h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
        .company-access-header p { font-size: 14px; opacity: 0.9; line-height: 1.8; margin-bottom: 20px; }
        .company-map {
            width: 100%;
            max-width: 480px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid rgba(255,255,255,0.3);
            line-height: 0;
        }
        .company-map iframe {
            display: block;
            width: 100%;
            height: 200px;
        }
        .map-expand-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .map-expand-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        .map-expand-link svg {
            width: 16px;
            height: 16px;
        }
        .company-access-body { padding: 32px; }
        .access-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }
        .access-item:last-child { margin-bottom: 0; }
        .access-item-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .access-item-icon svg { width: 20px; height: 20px; stroke: white; }
        .access-item-content h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
        .access-item-content p { font-size: 14px; color: var(--gray); line-height: 1.8; }

        /* News Section */
        .news-section { 
            background: var(--gray-pale);
            background-image: 
                linear-gradient(90deg, rgba(0, 133, 122, 0.07) 1px, transparent 1px),
                linear-gradient(rgba(0, 133, 122, 0.07) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        .news-list { max-width: 900px; }
        .news-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 24px;
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        .news-item:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        }
        .news-item-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-pale);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .news-item-icon svg { width: 24px; height: 24px; stroke: var(--primary); }
        .news-date {
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-light);
            min-width: 100px;
        }
        .news-content { font-size: 15px; color: var(--gray-dark); }

        /* Footer */
        /* FAQ & Contact Section */
        .faq-contact-section {
            background: var(--white);
            padding: 50px 0;
        }
        .faq-contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            gap: 60px;
            align-items: stretch;
        }
        .faq-area {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .faq-area .section-title {
            text-align: left;
            font-size: 22px;
        }
        .section-title-underline {
            width: 40px;
            height: 3px;
            background: var(--primary);
            margin: 10px 0 0;
        }
        .faq-list {
            margin: 0;
            flex: 1;
        }
        .faq-item {
            border-bottom: 1px solid var(--primary);
            margin-bottom: 0;
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 12px 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            gap: 12px;
        }
        .faq-q-mark {
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .faq-q-text {
            flex: 1;
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
        }
        .faq-toggle {
            font-size: 20px;
            font-weight: 300;
            color: var(--gray);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-bottom: 12px;
        }
        .faq-answer p {
            padding-left: 40px;
            font-size: 12px;
            color: var(--gray);
            line-height: 1.7;
        }
        .contact-area {
            width: 320px;
            flex-shrink: 0;
            background: var(--primary);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .contact-area-title {
            font-size: 14px;
            font-weight: 500;
            color: white;
            margin-bottom: 12px;
        }
        .contact-area-phone {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            letter-spacing: 1px;
            transition: opacity 0.3s ease;
        }
        .contact-area-phone:hover {
            opacity: 0.8;
        }
        .contact-area-hours {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.9);
        }
        @media (max-width: 900px) {
            .faq-contact-container {
                flex-direction: column;
            }
            .contact-area {
                width: 100%;
            }
        }
        footer { background: var(--black); padding: 80px 0 40px; }
        .footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 60px;
            border-bottom: 1px solid #333;
            margin-bottom: 40px;
        }
        .footer-brand .logo { margin-bottom: 16px; }
        .footer-brand .logo-mark { background: rgba(255, 255, 255, 0.1); }
        .footer-brand .logo-main { color: white; }
        .footer-brand .logo-sub { color: #888; }
        .footer-company-info { margin-top: 20px; }
        .footer-company-info p { font-size: 13px; color: #888; line-height: 1.8; margin-bottom: 8px; }
        .footer-links { display: flex; gap: 60px; }
        .footer-link-group h4 {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-link-group ul { list-style: none; }
        .footer-link-group li { margin-bottom: 12px; }
        .footer-link-group li::before { content: "- "; color: #666; }
        .footer-link-group a { font-size: 13px; color: #999; text-decoration: none; transition: color 0.3s ease; }
        .footer-link-group a:hover { color: var(--primary-light); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); }
        .footer-group { font-size: 11px; color: #555; font-family: 'DM Sans', sans-serif; letter-spacing: 0.5px; }
        .footer-group a { color: #888; text-decoration: none; transition: color 0.3s ease; }
        .footer-group a:hover { color: var(--primary); }
        .copyright { font-family: 'Outfit', sans-serif; font-size: 11px; color: #666; }

        /* Hero Gallery - Collage Style */
        .hero-gallery {
            position: relative;
            width: 100%;
            height: 550px;
        }
        .hero-gallery-item {
            position: absolute;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 14px 45px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .hero-gallery-item:hover {
            transform: translateY(-10px) rotate(0deg) !important;
            box-shadow: 0 22px 65px rgba(0, 0, 0, 0.25);
            z-index: 10;
        }
        .hero-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-gallery-item:nth-child(1) {
            width: 365px;
            height: 260px;
            top: 0;
            left: 0;
            transform: rotate(-3deg);
            z-index: 3;
        }
        .hero-gallery-item:nth-child(2) {
            width: 415px;
            height: 310px;
            top: 100px;
            left: 230px;
            transform: rotate(2deg);
            z-index: 2;
        }
        .hero-gallery-item:nth-child(3) {
            width: 310px;
            height: 235px;
            top: 290px;
            left: 50px;
            transform: rotate(-2deg);
            z-index: 1;
        }

        /* About Slideshow */
        .about-slideshow {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 320px;
            border-radius: 20px;
            overflow: hidden;
        }
        .about-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .about-slide.active {
            opacity: 1;
        }
        .about-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-slideshow-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,133,122,0.3) 0%, rgba(0,100,90,0.35) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .about-slideshow-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .about-slideshow-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
        }
        .about-slideshow-text {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: white;
            letter-spacing: 3px;
        }
        .slideshow-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
            pointer-events: auto;
        }
        .slideshow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slideshow-dot.active {
            background: white;
            transform: scale(1.3);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container { grid-template-columns: 1fr; }
            .hero-visual { margin-top: 40px; }
            .hero-gallery { height: 350px; }
            .hero-gallery-item:nth-child(1) { width: 240px; height: 180px; }
            .hero-gallery-item:nth-child(2) { width: 280px; height: 210px; left: 150px; }
            .hero-gallery-item:nth-child(3) { width: 200px; height: 150px; left: 30px; }
            .about-grid { grid-template-columns: 1fr; }
            .about-visual { order: -1; margin-bottom: 60px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .company-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .header-main { padding: 12px 20px; }
            .logo-text { display: none; }
            nav ul { display: none; }
            section { padding: 80px 0; }
            .section-inner { padding: 0 20px; }
            .hero-container { padding: 60px 20px; }
            .hero-stats { flex-wrap: wrap; gap: 16px; }
            .hero-stat { min-width: calc(50% - 8px); }
            .services-grid { grid-template-columns: 1fr; }
            .hero-gallery { height: 420px; }
            .hero-gallery-item:nth-child(1) { width: 230px; height: 175px; }
            .hero-gallery-item:nth-child(2) { width: 280px; height: 210px; left: 130px; top: 75px; }
            .hero-gallery-item:nth-child(3) { width: 200px; height: 150px; left: 25px; top: 220px; }
            .about-slideshow { min-height: 280px; }
            .about-points { grid-template-columns: 1fr; }
            .about-features { flex-wrap: wrap; justify-content: center; }
            .news-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
            .news-bar-list { flex-direction: column; gap: 12px; }
            .news-item { flex-direction: column; align-items: flex-start; gap: 12px; }
            .company-row { flex-direction: column; gap: 12px; }
            .footer-top { flex-direction: column; gap: 48px; }
            .footer-links { flex-direction: column; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .header-top { display: none; }
            .hero { padding-top: 82px; }
        }
