:root {
  --cassiopeia-color-primary: #f0f2f5;
  --cassiopeia-color-link: #1f8fff;
  --link-color: #1f8fff;
  --link-color-rgb: 34, 79, 170;
  --cassiopeia-color-hover: #424077;
  --link-hover-color: #424077;
  --link-hover-color-rgb: 66, 64, 119;
}
/* Header Styles */
.container-header {
  background-color: #ffffff;
  background-image: none;
  border-bottom: #e4e4e7;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}



/* 1. Global Background and White Content Card */
/* ------------------------------------------- */

/* Set the entire page background to light gray */
body {
    background-color: #f0f2f5; 
}

/* Define the white content card wrapper, making it centered and shadowed */
.com-content-article {
    /* Override Bootstrap max-width to get the desired narrow column look */
    max-width: 1100px !important; 
    margin: 40px auto; /* Vertical margin, centered horizontally */
    
    /* Create the white card effect */
    padding: 40px; 
    background-color: #fff; 
    border-radius: 8px; 
    
    /* Subtle shadow to mimic the light gray border/lifted look */
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); 
}

/* 2. Article Typography & Structure Overrides */
/* ------------------------------------------- */

/* Use the article's specific class to ensure high CSS specificity.
   This targets the content inside the white box. */
.com-content-article.item-page {
    /* No need for padding/background here as the parent (.container-md) handles it */
}



/* Clean up links for a modern look (no default underline, only on hover) */
a {
    text-decoration: none; 
}
a:hover {
    text-decoration: underline; 
}

/* Footer Style */
.footer {
    color: #fff;
    background-color: #495057;
    background-image: none;
    margin-top: 1em;
}
 
/* Front page styles */
/* Buttons */
        .btn-primary {
            background: #1f8fff;
            border-color: var(--primary-color);
          color:#ffffff;
        }

        .btn-primary:hover {
            background: #1f8fff;
            border-color: var(--primary-hover);
          color:#ffffff;
        }

        /* Hero Section */
        .hero-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, transparent 50%, rgba(233, 235, 239, 0.05) 100%);
            z-index: -1;
        }

        .badge-custom {
            background: #1f8fff;
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
          color:#ffffff;
        }

        .hero-image {
            border-radius: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .stat-box {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Features Section */
        .features-section {
            padding: 5rem 0;
        }

        .feature-card {
            border: 2px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 2rem;
            height: 100%;
            transition: border-color 0.3s;
        }

        .feature-card:hover {
            border-color: rgba(0, 180, 216, 0.5);
        }

       

        /* How It Works */
        .how-it-works-section {
            padding: 5rem 0;
            background: rgba(248, 249, 250, 0.5);
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 auto 1.5rem;
        }

        .dashboard-image {
            border-radius: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            width: 100%;
            height: auto;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 5rem 0;
        }

        .pricing-card {
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 2rem;
            height: 100%;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary-color);
            box-shadow: 0 10px 40px rgba(0, 180, 216, 0.1);
            transform: scale(1.05);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .pricing-features i {
            color: var(--primary-color);
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, transparent 50%, rgba(233, 235, 239, 0.1) 100%);
        }

        /* Footer */
        .footer {
            border-top: 1px solid var(--border-color);
            padding: 3rem 0 2rem;
        }

        .footer h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer ul li {
            margin-bottom: 0.5rem;
        }

        .footer a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: #212529;
        }

        .section-badge {
            background: #1f8fff;
            color: #1f8fff;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            display: inline-block;
            margin-bottom: 1rem;
          color:#ffffff;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .hero-section {
                padding: 3rem 0;
            }

            .features-section,
            .how-it-works-section,
            .pricing-section,
            .cta-section {
                padding: 3rem 0;
            }

            .pricing-card.featured {
                transform: scale(1);
                margin: 1rem 0;
            }
        }