/* ACA Quote Page Styles */
#hp-aca-quote {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.hp-aca-result h2 {
    font-size: 24px;
    color: #1a4dab;
    text-align: center;
    margin-bottom: 20px;
}

.hp-quote-summary {
    margin-top: 20px;
}

.quote-section {
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quote-section h3 {
    font-size: 18px;
    color: #1a4dab;
    margin-bottom: 10px;
}

.quote-section p {
    font-size: 16px;
    margin: 8px 0;
}

strong {
    font-weight: bold;
}

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f9fafb;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .quote-card {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            max-width: 64rem;
            width: 100%;
            padding: 3rem;
            text-align: center;
        }

        .header-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .agent-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .header-text {
            text-align: left;
        }

        .main-title {
            font-size: 3rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 1.25rem;
            color: #374151;
            line-height: 1.6;
        }

        .subtitle p {
            margin-bottom: 0.5rem;
        }

        .highlight-number {
            color: #2563eb;
            font-weight: 600;
        }

        .cta-section {
            margin: 2rem 0;
        }

        .cta-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .phone-button {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            border: none;
            border-radius: 9999px;
            padding: 1rem 2rem;
            font-size: 1.25rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .phone-button:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.5);
        }

        .phone-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .disclaimer {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.6;
            max-width: 60rem;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .quote-card {
                padding: 2rem;
            }

            .header-section {
                flex-direction: column;
                text-align: center;
            }

            .header-text {
                text-align: center;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }

            .phone-button {
                font-size: 1.125rem;
                padding: 0.875rem 1.75rem;
            }
        }