.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    margin-bottom: 4rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #212529;
  }

  .hero-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 1rem;
  }

  .hero-image {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .integrations-section {
    padding: 5rem 0;
    background: #f8f9fa;
  }

  .integrations-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #212529;
  }

  .integrations-section .subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 3rem;
  }

  .integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .integration-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .integration-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .integration-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
  }

  .integration-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
  }

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #3d50f5 0%, #2c3fd9 100%);
    color: white;
    margin-top: 4rem;
  }

  .cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .cta-section .btn {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
  }

  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .integrations-section h2,
    .cta-section h2 {
      font-size: 2rem;
    }
  }


  .feature-highlights {
    padding: 4rem 0;
    background: #ffffff;
  }

  .feature-highlights h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #212529;
  }

  .feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .feature-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
  }

  .feature-card p {
    color: #6c757d;
    margin: 0;
  }

  @media (max-width: 768px) {
    .feature-highlights h2 {
      font-size: 2rem;
    }
  }

  /* Auth Form Styles */
  .auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 3rem 1rem;
  }

  .auth-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 450px;
  }

  .auth-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .auth-box h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #212529;
    text-align: center;
  }

  .auth-box .form-group {
    margin-bottom: 1.5rem;
  }

  .auth-box .form-group label {
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.5rem;
  }

  .auth-box .form-control {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .auth-box .form-control:focus {
    border-color: #3d50f5;
    box-shadow: 0 0 0 0.2rem rgba(61, 80, 245, 0.25);
  }

  .auth-box .btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    margin-top: 1rem;
  }

  .auth-box .cf-turnstile {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
  }

  .auth-box a {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #3d50f5;
    text-decoration: none;
  }

  .auth-box a:hover {
    text-decoration: underline;
  }

  .auth-box .form-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .auth-box {
      padding: 2rem 1.5rem;
    }

    .auth-box h2 {
      font-size: 1.75rem;
    }
  }