        /* Global Styles */
        :root {
            --primary: #2665a9;
            --primary-dark: #1a4d8a;
            --secondary: #ff6b35;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --text: #333;
            --text-light: #666;
            --white: #ffffff;
            --success: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Titillium Web", sans-serif;
        }
        
        body {
            color: var(--text);
            line-height: 1.7;
            background-color: var(--white);
        }
/*         
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 400;
            src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfedw.ttf) format('truetype');
        } */
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
        }
        
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            /* border: 2px solid red; */
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            border: 2px solid var(--primary);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(38, 101, 169, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(38, 101, 169, 0.2);
        }
        
        .text-center {
            text-align: center;
        }
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin: 20px auto;
            border-radius: 2px;
        }
        
 
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;

        }

        .hero .constainer {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(38,101,169,0.1) 0%, rgba(38,101,169,0) 70%);
            border-radius: 50%;
        }
        
        .hero-content {
            max-width: 600px;
            position: relative;
            /* border: 2px solid var(--primary); */
            
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .hero h1 span {
            color: var(--primary);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .hero-buttons {
            width: 50%;
            display: flex;
            gap: 15px;
         
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            max-width: 600px;
        }
        
        .hero-image img {
            width: 90%;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        

        
/* FAQ Section */

.accordion-section {
  background-color: #000000;
  padding: 2rem;
  width: 100%;
  height: fit-content;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-section h2 {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.accordion-item {
  background-color: #000000;
  border-radius: 0.4rem;
}

.accordion-item hr {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.accordion-link {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  background-color: #000000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.accordion-link h3 {
  font-weight: 500;
  font-size: 20px;
}

.accordion-link i {
  color: #e7d5ff;
  padding: 0.5rem;
}

.accordion-link ul {
  display: flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.accordion-link li {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1px 5px;
}

.accordion-link div {
  display: flex;
}

.accordion-link .ion-md-arrow-down {
  display: none;
}

.answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #000;
  transition: max-height 650ms;
}

.answer p {
  color: #fff;
  font-size: 15px;
  padding: 2rem;
}

.accordion-item:target .answer {
  max-height: 40rem;
}

.accordion-item:target .accordion-link .ion-md-arrow-forward {
  display: none;
}

.accordion-item:target .accordion-link .ion-md-arrow-down {
  display: block;
}


        /* Features Section */
        .features {
            background-color: var(--white);
        }
        
        .section-header {
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .section-header p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border-top: 4px solid var(--primary);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 1.8rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
          /* Pricing Section */
        .pricing {
            background-color: var(--light);
        }
        
        .pricing-header {
            margin-bottom: 40px;
        }
        
        .pricing-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        .pricing-toggle {
            display: flex;
            justify-content: center;
            background: var(--white);
            padding: 5px;
            border-radius: 50px;
            width: fit-content;
            margin: 30px auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .toggle-btn {
            padding: 10px 30px;
            border: none;
            background: transparent;
            font-weight: 600;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            color: var(--text-light);
        }
        
        .toggle-btn.active {
            background: var(--primary);
            color: var(--white);
        }
        
        .toggle-btn:hover {
            color: var(--primary);
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .plan-card {
            background: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            position: relative;
            text-align: center;
        }
        
        .plan-card.popular {
            border: 2px solid var(--secondary);
            transform: scale(1.05);
        }
        
        .plan-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--secondary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
        }
        
        .plan-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .plan-title {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 400;
        }
        
        .price-note {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .savings-badge {
            display: inline-block;
            background: var(--success);
            color: var(--white);
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .plan-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        
        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        /* Additional CSS for price toggling */
        .price, .price-note, .savings-badge {
            transition: opacity 0.3s ease;
        }

        /* Ensure yearly elements are hidden by default */
        .price.yearly, 
        .savings-badge.yearly {
            display: none;
        }
        
   
        /* CTA Section */
        .cta {
            background-color: var(--white);
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 15px;
            padding: 60px;
            text-align: center;
            color: var(--white);
            box-shadow: 0 20px 40px rgba(38, 101, 169, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-box::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-box p {
            max-width: 600px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
            opacity: 0.9;
        }
        
        .cta-box .btn {
            position: relative;
            z-index: 1;
            background: var(--white);
            color: var(--primary);
            font-weight: 700;
        }
        
        .cta-box .btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            width: 100%;
            padding: 20px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            background-color: var(--white);
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f5f7fa;
        }
        
        .faq-question:after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .faq-question.active:after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.show {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col li {
            margin-bottom: 10px;
        }
        
        .footer-col a {
            color: #bdc3c7;
            transition: color 0.3s ease;
        }
        
        .footer-col a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        .social-links a {
            color: var(--white);
            margin-left: 15px;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--secondary);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero {
                padding: 150px 0 80px;
                text-align: center;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 50px;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
                transform: none;
                top: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .plan-card.popular {
                transform: scale(1);
            }
            
            .plan-card.popular:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav {
                margin: 20px 0;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 5px 10px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .cta-box {
                padding: 40px 20px;
            }
            
            .cta-box h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
            }
            
            .pricing-toggle {
                flex-direction: column;
                width: 100%;
                border-radius: 10px;
            }
            
            .toggle-btn {
                width: 100%;
                border-radius: 0;
            }
            
            .toggle-btn:first-child {
                border-radius: 10px 10px 0 0;
            }
            
            .toggle-btn:last-child {
                border-radius: 0 0 10px 10px;
            }
        }