/* Styles extracted from inline <style> blocks during the SSR migration. */

/* ===== from our-services.html ===== */
.services-hero {
            background: linear-gradient(135deg, #fef4f4 0%, #ffffff 100%);
            padding: 120px 0 60px;
            text-align: center;
        }

        .services-hero h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .services-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Services Grid Section */
        .services-hub-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 30px;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f6;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* Red Accent top border */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        /* Hover Animations */
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: #ffebee;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .service-desc {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 25px;
        }

        .service-cta {
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .service-cta i {
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-cta {
            gap: 12px;
        }

        .service-card:hover .service-cta i {
            transform: translateX(4px);
        }

/* ===== from about-us.html ===== */
.about-hero {
            background: linear-gradient(135deg, #fef4f4 0%, #ffffff 100%);
            padding: 120px 0 60px;
            text-align: center;
        }

        .about-hero h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .about-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .mission-section {
            padding: 80px 0;
            background: var(--white);
        }

        .mission-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-content h2 {
            font-size: 2.2rem;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .mission-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

/* ===== from faq.html ===== */
.faq-hero {
            background: linear-gradient(135deg, #fef4f4 0%, #ffffff 100%);
            padding: 120px 0 60px;
            text-align: center;
        }

        .faq-hero h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .faq-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .standalone-faq-section {
            padding: 60px 0 80px;
            background: #f8fbfe;
        }

/* ===== from privacy-policy.html ===== */
.page-hero {
            background: linear-gradient(135deg, #fef4f4 0%, #ffffff 100%);
            padding: 120px 0 60px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .page-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .content-section {
            padding: 60px 0;
            background: var(--white);
        }

        .content-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .content-container h2 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .content-container h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .content-container p,
        .content-container li {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .content-container ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .content-container a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .content-container a:hover {
            text-decoration: underline;
        }

/* ===== from terms-conditions.html ===== */
.page-hero {
            background: linear-gradient(135deg, #fef4f4 0%, #ffffff 100%);
            padding: 120px 0 60px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .page-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .content-section {
            padding: 60px 0;
            background: var(--white);
        }

        .content-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .content-container h2 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .content-container h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .content-container p,
        .content-container li {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .content-container ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .content-container a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .content-container a:hover {
            text-decoration: underline;
        }
