/* Start custom CSS *//* TruAge Landing Page Specific Styles */
/* Add this CSS to your page's custom CSS area or in Additional CSS */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Page-specific wrapper to avoid affecting other pages */
.truage-landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #FDFBF8;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5f 50%, #1a1a3a 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Headings */
.truage-landing-page h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #C0A062;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.truage-landing-page h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #C0A062;
    font-weight: 600;
    text-align: center;
}

.truage-landing-page h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #C0A062;
    font-weight: 500;
}

.truage-landing-page h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #F4F0E9;
    font-weight: 500;
    text-align: center;
}

/* Body text */
.truage-landing-page p {
    font-family: 'Inter', sans-serif;
    color: #F4F0E9;
    line-height: 1.6;
    font-size: 1.1rem;
}

.truage-landing-page .hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Buttons */
.truage-landing-page .cta-button,
.truage-landing-page .wp-block-button__link,
.truage-landing-page a[href*="product"] {
    display: inline-block !important;
    background: linear-gradient(45deg, #b8860b, #C0A062) !important;
    color: #FDFBF8 !important;
    padding: 1.2rem 2.5rem !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.4) !important;
    border: 2px solid #C0A062 !important;
    text-align: center !important;
}

.truage-landing-page .cta-button:hover,
.truage-landing-page .wp-block-button__link:hover,
.truage-landing-page a[href*="product"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(192, 160, 98, 0.6) !important;
    background: linear-gradient(45deg, #C0A062, #daa520) !important;
    color: #1a1a3a !important;
}

/* Features/Benefits Cards */
.truage-landing-page .feature-card,
.truage-landing-page .benefit-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

/* Process Steps */
.truage-landing-page .step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #C0A062, #daa520);
    color: #1a1a3a;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Price highlight */
.truage-landing-page .price-highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #C0A062;
    margin-bottom: 2rem;
    text-align: center;
}

/* Benefit checkmarks */
.truage-landing-page .benefit-icon {
    color: #C0A062;
    margin-right: 1rem;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .truage-landing-page h1 {
        font-size: 2.5rem;
    }
    
    .truage-landing-page h2 {
        font-size: 2rem;
    }
    
    .truage-landing-page .hero-description {
        font-size: 1.1rem;
    }
}/* End custom CSS */