:root {
    --primary: #aecc48;
    --primary-hover: #9dbb3a;
    --secondary: #1f7aa7;
    --secondary-hover: #186a93;
    --text-dark: #333;
    --text-light: #666;
    --text-lighter: #888;
    --white: #fff;
    --light-bg: #f8f9fa;
    --border-color: #e1e4e8;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .app-container {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-hover);
  }
  
  .btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
  }
  
  .btn-secondary:hover {
    background-color: var(--secondary-hover);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
  }
  
  .btn-outline:hover {
    background-color: var(--light-bg);
  }
  
  .btn-light {
    background-color: var(--white);
    color: var(--secondary);
    border: none;
  }
  
  .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
  }
  
  .nav-links ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:not(.btn):hover {
    color: var(--primary);
  }
  
  .mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn span:first-child {
    top: 0;
  }
  
  .mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .mobile-menu-btn span:last-child {
    bottom: 0;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(to right, #f8f9fa, #f1f3f5);
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .image-container {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
  }
  
  /* Features Section */
  .features {
    background-color: var(--white);
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    background-color: rgba(174, 204, 72, 0.1);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon .icon {
    color: var(--primary);
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
  }
  
  /* Pricing Section */
  .pricing {
    background-color: var(--light-bg);
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .pricing-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .pricing-card.popular {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }
  
  .popular-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
  }
  
  .pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
  }
  
  .description {
    color: var(--text-light);
    margin-bottom: 2rem;
    flex-grow: 1;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--white);
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .testimonial-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
  }
  
  .quote-icon {
    margin-bottom: 1rem;
  }
  
  .quote-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--text-lighter);
  }
  
  .quote {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .author {
    margin-top: auto;
  }
  
  .author .name {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .author .role {
    color: var(--text-lighter);
    font-size: 0.9rem;
  }
  
  /* Trust Badges */
  .trust-badges {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
  }
  
  .trust-badges h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .badge {
    height: 4rem;
    width: 8rem;
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
  }
  
  /* Compliance Badge */
  .compliance-badge {
    max-width: 36rem;
    margin: 0 auto;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background-color: rgba(174, 204, 72, 0.05);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
  }
  
  .check-icon {
    margin-left: 1rem;
  }
  
  .check-icon .icon {
    color: var(--primary);
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .badge-text .title {
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .badge-text .subtitle {
    color: var(--text-light);
  }
  
  /* CTA Section */
  .cta {
    background: linear-gradient(to right, var(--secondary), #1a6990);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
  }
  
  .cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Footer */
  .footer {
    background-color: #333;
    color: var(--white);
    padding: 4rem 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .footer p, .footer li {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer a {
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: var(--primary);
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 1rem;
  }
  
  .newsletter-form input {
    flex-grow: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem 0 0 0.375rem;
    font-family: 'Tajawal', sans-serif;
  }
  
  .newsletter-form .btn {
    border-radius: 0 0.375rem 0.375rem 0;
    padding: 0.5rem 1rem;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
  }
  
  .footer-bottom p {
    color: #777;
    font-size: 0.9rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
    
    .section-header h2 {
      font-size: 1.75rem;
    }
    
    .hero-text h1 {
      font-size: 2rem;
    }
    
    .cta h2 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    
    .mobile-menu-btn {
      display: block;
    }
    
    .section-header {
      margin-bottom: 2rem;
    }
  
    .pricing-card.popular {
      transform: none;
    }
    
    .badges-grid {
      gap: 1rem;
    }
  }
  
  /* For mobile menu when active */
  .mobile-menu-active {
    display: block !important;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .mobile-menu-active ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }
  
  .mobile-menu-active li {
    margin: 0.5rem 0;
    text-align: center;
  }
  
  /* RTL specific adjustments */
  [dir="rtl"] {
    text-align: right;
  }
  
  [dir="rtl"] .newsletter-form input {
    border-radius: 0 0.375rem 0.375rem 0;
  }
  
  [dir="rtl"] .newsletter-form .btn {
    border-radius: 0.375rem 0 0 0.375rem;
  }
  
  [dir="rtl"] .check-icon {
    margin-left: 0;
    margin-right: 1rem;
  }
  
  [dir="rtl"] .mobile-menu-btn span {
    right: auto;
    left: 0;
  }
  
  /* For icons in RTL */
  [dir="rtl"] svg {
    transform: scaleX(-1);
  }
  
  [dir="rtl"] .quote-icon svg {
    transform: none;
  }
  