
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro TC", "SF Pro Display", "Helvetica Neue", "Microsoft JhengHei", sans-serif;
            line-height: 1.6;
            color: #1d1d1f;
            background-color: #ffffff;
            -webkit-font-smoothing: antialiased;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
        }

        /* Hero Section - Gentle Style */
        .hero {
            background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
            padding: 88px 0;
            text-align: center;
            margin-bottom: 60px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -0.005em;
            line-height: 1.1;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 400;
            line-height: 1.3;
            letter-spacing: 0.004em;
            color: #6e6e73;
            margin-bottom: 32px;
        }

        /* Hero Brand */
        .hero-brand {
            margin-bottom: 32px;
        }

        .hero-brand h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 8px;
        }

        .hero-brand p {
            font-size: 14px;
            color: #6e6e73;
            font-weight: 400;
        }

        /* Hero Image */
        .hero-image {
            max-width: 700px;
            margin: 0 auto 40px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

        /* Hero Contact */
        .hero-contact {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #6e6e73;
        }

        .contact-label {
            font-size: 18px;
        }

        .hero-cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-cta-phone,
        .hero-cta-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 980px;
            font-size: 17px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-cta-phone {
            background: #8e8e93;
            color: #ffffff;
        }

        .hero-cta-phone:hover {
            background: #636366;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(142, 142, 147, 0.3);
        }

        .hero-cta-whatsapp {
            background: #ffffff;
            color: #8e8e93;
            border: 2px solid #8e8e93;
        }

        .hero-cta-whatsapp:hover {
            background: #8e8e93;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(142, 142, 147, 0.3);
        }

        /* Floating Navigation */
        .floating-nav {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            z-index: 100;
            margin-bottom: 60px;
        }

        .nav-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            padding: 16px 0;
            overflow-x: auto;
        }

        .nav-link {
            color: #1d1d1f;
            text-decoration: none;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .nav-link:hover {
            opacity: 1;
        }

        /* Section Styling */
        .section {
            padding: 88px 0;
        }

        .section-title {
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -0.003em;
            color: #1d1d1f;
            text-align: center;
            margin-bottom: 16px;
        }

        .section-intro {
            font-size: 21px;
            line-height: 1.47;
            color: #6e6e73;
            text-align: center;
            margin-bottom: 48px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Introduction Section */
        .intro-content {
            background: #ffffff;
            border-radius: 18px;
            padding: 48px 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #f5f5f7;
        }

        .intro-content p {
            font-size: 17px;
            line-height: 1.6;
            color: #1d1d1f;
            margin-bottom: 20px;
        }

        .intro-content .highlight-box {
            background: #f5f5f7;
            border-left: 4px solid #8e8e93;
            padding: 20px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .intro-content .highlight-box p {
            margin-bottom: 0;
            color: #1d1d1f;
            font-weight: 500;
        }

        /* Signs Cards */
        .signs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .sign-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 40px 32px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 2px solid #f5f5f7;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sign-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
            border-color: #d1d1d6;
        }

        .sign-number {
            display: inline-block;
            background: #8e8e93;
            color: #ffffff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 24px;
            font-weight: 600;
            line-height: 48px;
            text-align: center;
            margin-bottom: 20px;
        }

        .sign-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .sign-card p {
            font-size: 17px;
            line-height: 1.6;
            color: #6e6e73;
            margin-bottom: 16px;
        }

        .sign-note {
            background: #f5f5f7;
            border-radius: 8px;
            padding: 16px;
            font-size: 15px;
            color: #1d1d1f;
            margin-top: 16px;
        }

        /* Timeline Section */
        .timeline-container {
            background: #ffffff;
            border-radius: 18px;
            padding: 48px 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #f5f5f7;
        }

        .timeline-item {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
            align-items: flex-start;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-marker {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8e8e93 0%, #636366 100%);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            padding: 8px;
        }

        .timeline-content h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .timeline-content p {
            font-size: 17px;
            line-height: 1.6;
            color: #6e6e73;
            margin-bottom: 12px;
        }

        .timeline-content ul {
            list-style: none;
            margin: 12px 0;
        }

        .timeline-content li {
            font-size: 17px;
            line-height: 1.6;
            color: #1d1d1f;
            margin-bottom: 8px;
            padding-left: 24px;
            position: relative;
        }

        .timeline-content li:before {
            content: "•";
            position: absolute;
            left: 8px;
            color: #8e8e93;
            font-weight: 600;
        }

        /* Care Guide Section */
        .care-guide-content {
            background: #ffffff;
            border-radius: 18px;
            padding: 48px 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #f5f5f7;
        }

        .care-section {
            margin-bottom: 40px;
        }

        .care-section:last-child {
            margin-bottom: 0;
        }

        .care-section h3 {
            font-size: 28px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 20px;
        }

        .care-section p {
            font-size: 17px;
            line-height: 1.6;
            color: #6e6e73;
            margin-bottom: 16px;
        }

        .care-section ul {
            list-style: none;
            margin: 20px 0;
        }

        .care-section li {
            font-size: 17px;
            line-height: 1.6;
            color: #1d1d1f;
            margin-bottom: 12px;
            padding-left: 32px;
            position: relative;
        }

        .care-section li:before {
            content: "✓";
            position: absolute;
            left: 8px;
            color: #8e8e93;
            font-weight: 600;
            font-size: 18px;
        }

        /* Gentle Alert */
        .gentle-alert {
            background: linear-gradient(135deg, #f5f5f7 0%, #e5e5ea 100%);
            border-radius: 18px;
            padding: 48px 40px;
            margin: 60px 0;
            border: 2px solid #d1d1d6;
        }

        .gentle-alert h2 {
            font-size: 36px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 24px;
            text-align: center;
        }

        .gentle-alert p {
            font-size: 19px;
            line-height: 1.6;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .gentle-alert ul {
            list-style: none;
            margin: 24px 0;
        }

        .gentle-alert li {
            font-size: 17px;
            line-height: 1.6;
            color: #1d1d1f;
            margin-bottom: 12px;
            padding-left: 32px;
            position: relative;
        }

        .gentle-alert li:before {
            content: "•";
            position: absolute;
            left: 12px;
            color: #8e8e93;
            font-weight: 600;
            font-size: 20px;
        }

        /* Service Section */
        .service-content {
            background: #ffffff;
            border-radius: 18px;
            padding: 48px 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #f5f5f7;
        }

        .service-section {
            margin-bottom: 40px;
        }

        .service-section h3 {
            font-size: 28px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 20px;
        }

        .service-section p {
            font-size: 17px;
            line-height: 1.6;
            color: #6e6e73;
            margin-bottom: 16px;
        }

        .service-section ul {
            list-style: none;
            margin: 20px 0;
        }

        .service-section li {
            font-size: 17px;
            line-height: 1.6;
            color: #1d1d1f;
            margin-bottom: 12px;
            padding-left: 32px;
            position: relative;
        }

        .service-section li:before {
            content: "✓";
            position: absolute;
            left: 8px;
            color: #8e8e93;
            font-weight: 600;
            font-size: 18px;
        }

        .price-box {
            background: #f5f5f7;
            border-radius: 12px;
            padding: 24px;
            margin-top: 24px;
        }

        .price-box h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #e5e5e7;
        }

        .price-item:last-child {
            border-bottom: none;
        }

        .price-label {
            font-size: 17px;
            color: #6e6e73;
        }

        .price-value {
            font-size: 20px;
            font-weight: 600;
            color: #1d1d1f;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #f5f5f7;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .faq-question h3 {
            font-size: 19px;
            font-weight: 600;
            color: #1d1d1f;
            margin: 0;
        }

        .faq-toggle {
            font-size: 24px;
            color: #8e8e93;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 32px 24px;
            font-size: 17px;
            line-height: 1.6;
            color: #6e6e73;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        /* Related Articles */
        .related-articles {
            background: #f5f5f7;
            padding: 88px 0;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .related-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 32px;
            text-decoration: none;
            display: block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #f5f5f7;
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .related-card h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .related-card p {
            font-size: 15px;
            line-height: 1.6;
            color: #6e6e73;
            margin-bottom: 16px;
        }

        .read-more {
            color: #8e8e93;
            font-weight: 500;
            font-size: 15px;
        }

        /* Final CTA - Gentle */
        .final-cta {
            background: linear-gradient(135deg, #8e8e93 0%, #636366 100%);
            padding: 88px 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 40px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .final-cta p {
            font-size: 21px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            color: #1d1d1f;
            padding: 16px 32px;
            border-radius: 980px;
            font-size: 19px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
        }

        /* Back to Home */
        .back-to-home {
            padding: 40px 0;
            text-align: center;
            background: #f5f5f7;
        }

        .back-home-link {
            display: inline-block;
            color: #8e8e93;
            font-size: 17px;
            font-weight: 500;
            text-decoration: none;
            padding: 12px 24px;
            border: 2px solid #8e8e93;
            border-radius: 980px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .back-home-link:hover {
            background: #8e8e93;
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 800px) {
            .hero {
                padding: 60px 0;
            }

            .hero-brand h3 {
                font-size: 20px;
            }

            .hero-brand p {
                font-size: 12px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 19px;
            }

            .hero-image img {
                height: 280px;
            }

            .contact-info {
                font-size: 14px;
                flex-direction: column;
                text-align: center;
            }

            .hero-cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta-phone,
            .hero-cta-whatsapp {
                width: 100%;
                justify-content: center;
            }

            .nav-links {
                gap: 16px;
                padding: 12px 0;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 32px;
            }

            .section-intro {
                font-size: 17px;
            }

            .signs-grid,
            .related-grid {
                grid-template-columns: 1fr;
            }

            .sign-card,
            .intro-content,
            .timeline-container,
            .care-guide-content,
            .service-content {
                padding: 32px 24px;
            }

            .timeline-marker {
                width: 60px;
                height: 60px;
                font-size: 14px;
            }

            .final-cta h2 {
                font-size: 32px;
            }

            .final-cta p {
                font-size: 17px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }
        }
    