
/* Global Styles */
:root {
    --primary-color: #3964e8;
    --primary-hover: #2c51c9;
    --secondary-color: #5884ff;
    --text-color: #111827;
    --text-muted: #6b7280;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: #fff;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .hidden {
    display: none !important;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-hover);
  }
  
  .btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-color);
  }
  
  .btn-outline:hover {
    background-color: var(--light-bg);
  }
  
  .btn-sm {
    padding: 5px 15px;
    font-size: 0.85rem;
  }
  
  .btn-wide {
    padding: 10px 30px;
  }
  
  .w-full {
    width: 100%;
  }
  
  /* Section Styling */
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .bg-light {
    background-color: var(--light-bg);
  }
  
  /* Header */
  .main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s;
  }
  
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  .logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .desktop-nav {
    display: none;
  }
  
  .nav-menu {
    display: flex;
    gap: 24px;
  }
  
  .nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-color);
    transition: background-color 0.2s;
  }
  
  .dropdown-menu a:hover {
    background-color: var(--light-bg);
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .search-button {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 5px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    width: 40px;
    height: 40px;
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    background-color: white;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .mobile-menu-item {
    padding: 12px 0;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
  }
  
  .accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
  }
  
  .accordion-content {
    display: none;
    padding: 10px 0 0 10px;
    flex-direction: column;
    gap: 10px;
  }
  
  .mobile-link {
    color: var(--text-muted);
    padding: 8px 0;
    display: block;
  }
  
  .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  
  /* Footer */
  .main-footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 30px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .footer-tagline {
    color: #d1d5db;
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.2s;
  }
  
  .social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-links a {
    color: #d1d5db;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
  }
  
  .legal-links {
    display: flex;
    gap: 20px;
  }
  
  /* Cookie Consent */
  .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    z-index: 9999;
    font-size: 0.9rem;
  }
  
  .cookie-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    gap: 15px;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: var(--primary-hover);
  }
  
  .alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.alternative-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.alternative-card img {
    /* max-width: 100px;
    max-height: 100px; */
    border-radius: 50%;
    margin-bottom: 1rem;
}
.alternative-logo {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    height: 130px;
    overflow: hidden;
  }

.alternative-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.alternative-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.alternative-card a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.alternative-card a:hover {
    background-color: var(--primary-color);
    color: white;
}
.alternative-card a:active {
    transform: scale(0.95);
}
.alternative-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.alternative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Cookie Customize Modal Styles */
      .modal-hidden {
        display: none;
      }
      
      .cookie-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .cookie-modal-content {
        background-color: white;
        border-radius: 8px;
        max-width: 500px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      .cookie-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid #e5e7eb;
      }
      
      .cookie-modal-body {
        padding: 20px;
      }
      
      .cookie-modal-footer {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        padding: 16px 20px;
        border-top: 1px solid #e5e7eb;
      }
      
      .cookie-type {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e7eb;
      }
      
      .cookie-type:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
      }
      
      .cookie-type-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
      }
      
      .cookie-type-title {
        font-weight: bold;
        font-size: 16px;
      }
      
      .disabled {
        opacity: 0.5;
        pointer-events: none;
      }
      .fw400 {
        font-weight: 400;
      }
      .fw500 {
        font-weight: 500;
      }
      .fw600 {
        font-weight: 600;
      }    
       .about_us { font-size: 14px; font-weight: 400; line-height: 20px; }
    .static_ul { list-style-type: disc; padding-left: 20px; } 
    .about_us strong { font-weight: 700;  } 
    .static_ul strong { font-weight: 400; } 
    .about_us { margin-top: 10px; margin-left: 2px; margin-right: 2px; margin-bottom: 10px; }
  .about_us p { margin-bottom: 10px; }
  .about_us ul { margin-bottom: 10px; }
  /* Media Queries */
  @media (min-width: 768px) {
    .desktop-nav {
      display: block;
    }
    
    .mobile-menu-toggle {
      display: none;
    }
    
    .header-actions .btn {
      display: block;
    }
    
    .cookie-content {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  @media (max-width: 767px) {
    .header-actions .btn {
      display: none;
    }
    
    .section-padding {
      padding: 40px 0;
    }
    
    .section-header h2 {
      font-size: 1.75rem;
    }
  }
