
.pros-cons {
    background: #ffffff;
    padding: 40px 0;
}
.pros, .cons {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;  /* Ensures both columns are of equal height */
}
.pros {
    background: #e6f3ff;
}
.cons {
    background: #ffe6e6;
}
.pros h4, .cons h4 {
    margin-bottom: 15px;
}
.pros ul, .cons ul {
    list-style-type: none;
    padding-left: 0;
}
.pros ul li:before {
    content: '\f058'; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    margin-right: 10px;
    color: #0066ff;
}
.cons ul li:before {
    content: '\f057'; /* Font Awesome times icon */
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    margin-right: 10px;
    color: #ff0000;
}
:root {
    --primary: #2563eb;    /* Vibrant blue */
    --secondary: #f59e0b;  /* Warm orange */
    --dark: #1e293b;
    --light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f1f5f9;
    color: var(--primary) !important;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
    color: white !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    padding: 80px 0;
    color: white;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.price-badge {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.feature-icon {
    color: var(--primary);
    margin-right: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.trust-badge {
    background: #1e293b;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

.footer {
background: linear-gradient(135deg, #e0e0e0, #ffffff); /* Light grey to white gradient */
color: #333; /* Dark grey text for better contrast */
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.payment-icons i {
    transition: transform 0.3s ease;
}

.payment-icons i:hover {
    transform: scale(1.1);
    color: var(--secondary);
}

.footer a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    font-size: 0.9rem;
}




@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
    }
    .footer .col-md-6 {
        text-align: center !important;
    }
}

.plan-list {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-list:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

.introduction {
    background-color: #f8fafc; /* Light background */
}

.section-title {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--primary);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .lead-text {
        font-size: 1.2rem;
    }
}

.feature-box {
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .introduction .row {
        flex-direction: column-reverse;
    }
    .intro-content {
        padding-right: 0;
    }
}
