
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro TC", "SF Pro Display", "Segoe UI", "Microsoft JhengHei", "PingFang TC", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #1d1d1f;
            background: #ffffff;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
        }

        /* Hero Section */
        .hero {
            background: #f5f5f7;
            padding: 80px 0 60px;
            text-align: center;
        }

        .hero-brand {
            margin-bottom: 24px;
        }

        .hero-brand h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 6px;
        }

        .hero-brand p {
            font-size: 14px;
            color: #6e6e73;
            font-weight: 400;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 600;
            letter-spacing: -0.005em;
            line-height: 1.07;
            color: #007aff;
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 28px;
            font-weight: 400;
            line-height: 1.14;
            letter-spacing: 0.004em;
            color: #6e6e73;
            margin-bottom: 32px;
        }

        /* Hero Image - 16:9 */
        .hero-image {
            max-width: 640px;
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            aspect-ratio: 16 / 9;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Price Card */
        .hero-price-card {
            background: white;
            border-radius: 18px;
            padding: 32px;
            max-width: 500px;
            margin: 32px auto;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .price-badge {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 12px;
        }

        .price-amount {
            font-size: 48px;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 8px;
        }

        .price-note {
            font-size: 15px;
            color: #6e6e73;
            margin-top: 12px;
        }

        /* CTA Buttons */
        .hero-cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 32px;
        }

        .hero-cta-phone,
        .hero-cta-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 980px;
            font-size: 17px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 56px;
        }

        .hero-cta-phone {
            background: #007aff;
            color: #ffffff;
        }

        .hero-cta-phone:hover {
            background: #0051d5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        .hero-cta-whatsapp {
            background: #ffffff;
            color: #007aff;
            border: 2px solid #007aff;
        }

        .hero-cta-whatsapp:hover {
            background: #007aff;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        /* Emergency Alert */
        .emergency-alert {
            background: #f0f9ff;
            border: 2px solid #3b82f6;
            padding: 48px 32px;
            margin: 60px 0;
            border-radius: 18px;
            text-align: center;
        }

        .emergency-alert h2 {
            color: #1e40af;
            font-size: 32px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .emergency-alert ul {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 700px;
            margin: 24px auto;
        }

        .emergency-alert li {
            padding: 12px 0;
            font-size: 17px;
            line-height: 1.6;
            position: relative;
            padding-left: 32px;
            color: #1d1d1f;
        }

        .emergency-alert li:before {
            content: "⚠️";
            position: absolute;
            left: 0;
            font-size: 20px;
        }

        .emergency-cta {
            display: inline-block;
            background: #007aff;
            color: white;
            padding: 16px 32px;
            border-radius: 980px;
            font-size: 20px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 24px;
            min-height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .emergency-cta:hover {
            background: #0051d5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        /* Section Titles */
        h2 {
            font-size: 48px;
            font-weight: 600;
            color: #1d1d1f;
            margin: 80px 0 40px;
            text-align: center;
            letter-spacing: -0.003em;
        }

        h3 {
            font-size: 28px;
            font-weight: 600;
            color: #1d1d1f;
            margin: 32px 0 16px;
        }

        h4 {
            font-size: 22px;
            font-weight: 600;
            color: #007aff;
            margin: 24px 0 12px;
        }

        p {
            margin-bottom: 20px;
            color: #1d1d1f;
            font-size: 17px;
            line-height: 1.6;
        }

        /* Grid Layouts */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .info-card {
            background: #ffffff;
            padding: 32px;
            border-radius: 18px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f5f5f7;
        }

        .info-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .info-card h4 {
            margin-top: 0;
        }

        .info-card ul {
            list-style: none;
            padding: 0;
            margin: 12px 0;
        }

        .info-card li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            font-size: 16px;
            line-height: 1.6;
        }

        .info-card li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #007aff;
            font-weight: bold;
            font-size: 20px;
        }

        /* Comparison Table */
        .comparison-table {
            background: white;
            border-radius: 18px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            overflow-x: auto;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th {
            background: #007aff;
            color: white;
            padding: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 16px;
        }

        .comparison-table td {
            padding: 16px;
            border-bottom: 1px solid #f5f5f7;
            font-size: 15px;
            vertical-align: top;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover {
            background: #f9fafb;
        }

        /* Info Box */
        .info-box {
            background: #f0f9ff;
            border-left: 5px solid #007aff;
            padding: 24px 32px;
            margin: 32px 0;
            border-radius: 8px;
        }

        .info-box h4 {
            color: #1e40af;
            margin-top: 0;
        }

        .info-box ul {
            margin: 12px 0;
            padding-left: 24px;
        }

        .info-box li {
            margin: 8px 0;
            font-size: 16px;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            margin: 80px 0;
        }

        .faq-item {
            background: #ffffff;
            border: 2px solid #f5f5f7;
            padding: 32px;
            margin: 20px 0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #007aff;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
        }

        .faq-question {
            font-weight: 600;
            color: #1d1d1f;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .faq-answer {
            color: #1d1d1f;
            line-height: 1.6;
            font-size: 17px;
        }

        .faq-answer ul,
        .faq-answer ol {
            margin: 12px 0;
            padding-left: 24px;
        }

        .faq-answer li {
            margin: 8px 0;
        }

        /* Bottom CTA */
        .bottom-cta {
            background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
            padding: 60px 40px;
            text-align: center;
            margin: 80px -22px 0;
            border-radius: 20px;
            border: 2px solid #3b82f6;
        }

        .bottom-cta h2 {
            color: #1e40af;
            margin-top: 0;
            font-size: 40px;
        }

        .bottom-cta p {
            color: #1d1d1f;
            font-size: 19px;
            margin-bottom: 32px;
        }

        .contact-info {
            background: white;
            padding: 32px;
            border-radius: 12px;
            margin: 32px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .contact-info p {
            color: #1d1d1f;
            margin: 10px 0;
            font-size: 17px;
        }

        .bottom-cta .cta-button {
            background: #007aff;
            color: white;
            padding: 16px 40px;
            text-decoration: none;
            border-radius: 980px;
            font-weight: 600;
            font-size: 19px;
            transition: all 0.3s ease;
            display: inline-block;
            min-height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .bottom-cta .cta-button:hover {
            background: #0051d5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        /* Floating Call Button */
        .floating-call-btn {
            position: fixed;
            bottom: 24px;
            right: 20px;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
            border-radius: 50%;
            box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s ease-in-out infinite;
        }

        .floating-call-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(0, 122, 255, 0.5);
        }

        .floating-call-btn:active {
            transform: scale(0.95);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
            }
            50% {
                box-shadow: 0 6px 30px rgba(0, 122, 255, 0.6);
            }
        }

        .highlight {
            background: rgba(59, 130, 246, 0.1);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #007aff;
        }

        strong {
            color: #1d1d1f;
            font-weight: 600;
        }

        ul, ol {
            margin: 20px 0;
            padding-left: 28px;
        }

        li {
            margin: 10px 0;
            line-height: 1.8;
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0 40px;
            }

            .hero-brand h3 {
                font-size: 20px;
            }

            .hero-brand p {
                font-size: 12px;
            }

            .hero h1 {
                font-size: 36px;
                line-height: 1.1;
            }

            .hero-subtitle {
                font-size: 21px;
            }

            .hero-image {
                width: 100%;
                margin: 24px 0;
                border-radius: 8px;
            }

            .hero-price-card {
                width: 100%;
                max-width: none;
                padding: 24px;
                margin: 24px 0;
            }

            .price-amount {
                font-size: 40px;
            }

            .hero-cta-buttons {
                flex-direction: column;
                width: 100%;
                gap: 12px;
            }

            .hero-cta-phone,
            .hero-cta-whatsapp {
                width: 100%;
                justify-content: center;
                font-size: 18px;
            }

            h2 {
                font-size: 32px;
                margin: 60px 0 32px;
            }

            h3 {
                font-size: 24px;
            }

            .container {
                padding: 0 20px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .info-card,
            .comparison-table {
                padding: 24px;
            }

            .bottom-cta {
                padding: 40px 24px;
                margin: 60px -20px 0;
            }

            .bottom-cta h2 {
                font-size: 28px;
            }

            .emergency-alert {
                padding: 32px 20px;
            }

            .emergency-cta {
                width: 100%;
                font-size: 18px;
            }
        }

        @media (min-width: 769px) {
            .floating-call-btn {
                display: none;
            }
        }
    