    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: #1f2937;
      line-height: 1.6;
      background-color: #ffffff;
    }

    html {
      scroll-behavior: smooth;
    }

    /* Navigation */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: rgba(255, 255, 255, 0.95);
      -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    nav.scrolled {
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.5rem;
      font-weight: 700;
      text-decoration: none;
      color: #1f2937;
    }
.logo img{max-height:50px;}
    .logo-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
    }

    .nav-links {
      display: none;
      gap: 2rem;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background-color: white;
      padding: 1.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    }

    .nav-container:has(.hamburger.active) .nav-links {
      display: flex;
    }

    .nav-links a {
      color: #6b7280;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      padding: 0.75rem 0;
    }

    .nav-links a:hover {
      color: #2563eb;
    }

    .nav-buttons {
      display: none;
      gap: 1rem;
      align-items: center;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background-color: white;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-container:has(.hamburger.active) .nav-buttons {
      display: flex;
    }

    .nav-buttons .btn {
      padding: 0.625rem 1rem;
      border-radius: 0.5rem;
      border: none;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
    }

    .btn-secondary {
      background-color: transparent;
      color: #2563eb;
      border: 2px solid #2563eb;
    }

    .btn-secondary:hover {
      background-color: #eff6ff;
    }

    .btn-primary {
      background: linear-gradient(135deg, #9129d6 0%, #ff5639 100%);
      color: white;
    }

    .btn-primary:hover {
      box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
      transform: scale(1.02);
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap: 0.35rem;
    }

    .hamburger span {
      width: 1.5rem;
      height: 0.2rem;
      background-color: #1f2937;
      border-radius: 0.1rem;
      transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(0.3rem, -0.3rem);
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
        box-shadow: none;
        gap: 2rem;
      }

      .nav-links a {
        padding: 0;
      }

      .nav-buttons {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
      }

      .nav-buttons .btn {
        width: auto;
      }

      .hamburger {
        display: none;
      }
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      background: linear-gradient(135deg, #f3f4f6 0%, #f0f9ff 50%, #faf5ff 100%);
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 640px) {
      .hero {
        padding: 3rem 1.5rem;
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content {
      max-width: 1100px;
      text-align: center;
      position: relative;
      z-index: 10;
    }

    .hero h1 {
      font-size: clamp(1.75rem, 6vw, 4rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: #111827;
    }

    @media (min-width: 640px) {
      .hero h1 {
        margin-bottom: 1.5rem;
      }
    }

    .hero-highlight {
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: clamp(0.95rem, 2.5vw, 1.25rem);
      color: #6b7280;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    @media (min-width: 640px) {
      .hero p {
        margin-bottom: 2rem;
        line-height: 1.8;
      }
    }

    .hero-ctas {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 640px) {
      .hero-ctas {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
      }
    }

    .btn {
      padding: 0.875rem 1.5rem;
      border: none;
      border-radius: 0.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      font-family: 'Inter', sans-serif;
      width: 100%;
    }

    @media (min-width: 640px) {
      .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
      }
    }

    .btn-cta {
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      color: white;
      box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    }

    .btn-outline {
      background-color: white;
      color: #2563eb;
      border: 2px solid #2563eb;
    }

    .btn-outline:hover {
      background-color: #eff6ff;
      transform: translateY(-2px);
    }

    .hero-image {
      margin-top: 2rem;
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 1rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 640px) {
      .hero-image {
        margin-top: 3rem;
      }
    }

    /* Intro Section */
    .intro {
      padding: 5rem 1.5rem;
      background-color: #ffffff;
      text-align: center;
    }

    .intro-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .intro h2 {
      font-size: clamp(1.875rem, 6vw, 2.25rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #111827;
    }

    .intro p {
      font-size: 1.125rem;
      color: #6b7280;
      line-height: 1.8;
    }

    /* Core Capabilities */
    .capabilities {
      padding: 5rem 1.5rem;
      background-color: #ffffff;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-header h2 {
      font-size: clamp(1.875rem, 6vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.125rem;
      color: #6b7280;
    }

    .max-w-7xl {
      max-width: 1280px;
      margin: 0 auto;
    }

    .grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .feature-card {
      background-color: #ffffff;
      border: 2px solid #e5e7eb;
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s;
    }

    .feature-card:hover {
      border-color: #2563eb;
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
      transform: translateY(-5px);
    }

    .feature-icon {
      width: 4rem;
      height: 4rem;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #111827;
    }

    .feature-card p {
      color: #6b7280;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Process Steps */
    .process {
      padding: 5rem 1.5rem;
      background-color: #ffffff;
    }

    .process-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .process-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      @media (max-width: 1023px) {
        .process-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
    }

    .step-card {
      background-color: #ffffff;
      border: 2px solid #f3f4f6;
      border-radius: 1.5rem;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      position: relative;
    }

    .step-card:hover {
      border-color: #2563eb;
      box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    }

    .step-number {
      width: 2rem;
      height: 2rem;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 0.875rem;
      margin: 0 auto 1rem;
    }

    .step-card h3 {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #111827;
    }

    .step-card p {
      color: #6b7280;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    /* Dashboard Preview */
    .dashboard-preview {
      padding: 5rem 1.5rem;
      background-color: #f9fafb;
    }

    .tabs {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: 0.75rem 1.5rem;
      background-color: #e5e7eb;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }

    .tab-btn.active {
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      color: white;
    }

    .tab-content {
      display: none;
      animation: fadeIn 0.3s ease;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .dashboard-image {
      width: 100%;
      max-width: 1000px;
      height: auto;
      border-radius: 1rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    /* Why Choose Us */
    .why-choose {
      padding: 5rem 1.5rem;
      background-color: #ffffff;
    }

    .benefits-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .benefit-item {
      display: flex;
      gap: 1rem;
      padding: 1.5rem;
      border-radius: 0.75rem;
      transition: all 0.3s;
    }

    .benefit-item:hover {
      background-color: #f9fafb;
    }

    .benefit-icon {
      width: 3rem;
      height: 3rem;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.5rem;
    }

    .benefit-item h3 {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #111827;
    }

    .benefit-item p {
      color: #6b7280;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Testimonials */
    .testimonials {
      padding: 5rem 1.5rem;
      background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    }

    .testimonial-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .testimonial-card {
      background-color: #ffffff;
      border-radius: 1.5rem;
      padding: 3rem 2rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      text-align: center;
      position: relative;
    }

    .stars {
      display: flex;
      justify-content: center;
      gap: 0.25rem;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }

    .star {
      color: #fbbf24;
    }

    .testimonial-quote {
      font-size: 1.25rem;
      color: #374151;
      margin-bottom: 2rem;
      line-height: 1.8;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .author-info h4 {
      font-weight: 700;
      margin-bottom: 0.25rem;
      color: #111827;
    }

    .author-info p {
      color: #6b7280;
      font-size: 0.875rem;
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
      position: relative;
      z-index: 10;
    }

    .carousel-btn {
      width: 2.5rem;
      height: 2.5rem;
      background-color: #ffffff;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
      font-size: 1.25rem;
    }

    .carousel-btn:hover {
      background-color: #f0f9ff;
      transform: scale(1.1);
    }

    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .indicator {
      width: 0.75rem;
      height: 0.75rem;
      background-color: #d1d5db;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s;
    }

    .indicator.active {
      width: 2rem;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
    }

    /* Pricing */
    .pricing {
      padding: 5rem 1.5rem;
      background-color: #ffffff;
    }

    .pricing-toggle {
      display: inline-flex;
      background-color: #f3f4f6;
      border-radius: 9999px;
      padding: 0.25rem;
      margin-bottom: 3rem;
    }

    .pricing-toggle button {
      padding: 0.5rem 1.5rem;
      border: none;
      background-color: transparent;
      cursor: pointer;
      font-weight: 600;
      border-radius: 9999px;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }

    .pricing-toggle button.active {
      background-color: #ffffff;
      color: #111827;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    }

    .pricing-cards {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .pricing-card {
      border: 2px solid #e5e7eb;
      border-radius: 1.5rem;
      padding: 2rem;
      background-color: #ffffff;
      transition: all 0.3s;
      position: relative;
    }

    .pricing-card.featured {
      border-color: #2563eb;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      color: white;
      box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
      transform: scale(1.05);
    }

    .pricing-card:hover {
      border-color: #2563eb;
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    }

    .pricing-badge {
      position: absolute;
      top: -1rem;
      left: 50%;
      transform: translateX(-50%);
      background-color: #fbbf24;
      color: #111827;
      padding: 0.25rem 1rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .pricing-description {
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }

    .pricing-price {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: baseline;
    }

    .pricing-period {
      font-size: 1rem;
      margin-left: 0.5rem;
      opacity: 0.9;
    }

    .pricing-annually {
      font-size: 0.75rem;
      opacity: 0.8;
      margin-top: 0.5rem;
    }

    .pricing-card .btn {
      width: 100%;
      margin: 1.5rem 0;
      text-align: center;
    }

    .pricing-card.featured .btn {
      background-color: #ffffff;
      color: #2563eb;
    }

    .pricing-card.featured .btn:hover {
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
      transform: scale(1.02);
    }

    .pricing-features {
      list-style: none;
    }

    .pricing-features li {
      padding: 0.75rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured .pricing-features li {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .check-mark {
      color: #22c55e;
      font-weight: 700;
      font-size: 1.25rem;
    }

    .pricing-card.featured .check-mark {
      color: #ffffff;
    }

    /* FAQ */
    .faq {
      padding: 5rem 1.5rem;
      background-color: #ffffff;
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      border: 2px solid #e5e7eb;
      border-radius: 1rem;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.3s;
    }

    .faq-item.active {
      border-color: #2563eb;
      box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #f9fafb;
      font-weight: 600;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;
      transition: all 0.3s;
    }

    .faq-item.active .faq-question {
      background-color: #eff6ff;
    }

    .faq-toggle {
      font-size: 1.5rem;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 1.5rem;
    }

    .faq-answer p {
      color: #6b7280;
      line-height: 1.8;
    }

    /* Final CTA */
    .final-cta {
      padding: 5rem 1.5rem;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .final-cta-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }

    .final-cta h2 {
      font-size: clamp(2rem, 6vw, 3rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .final-cta p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .final-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 640px) {
      .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
      }
    }

    .btn-white {
      background-color: #ffffff;
      color: #2563eb;
    }

    .btn-white:hover {
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
      transform: scale(1.02);
    }

    .btn-outline-white {
      background-color: transparent;
      color: white;
      border: 2px solid white;
      min-width: 200px;
    }

    .btn-outline-white:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .final-cta-subtext {
      font-size: 0.95rem;
      opacity: 0.9;
    }

    /* Footer */
    footer {
      background-color: #111827;
      color: white;
      padding: 3rem 1.5rem;
    }

    .footer-content {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .footer-content {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .footer-section h3 {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.75rem;
    }

    .footer-section a {
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.95rem;
    }

    .footer-section a:hover {
      color: white;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-brand-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
    }

    .footer-brand p {
      color: #9ca3af;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-top: 0.5rem;
    }

    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .social-btn {
      width: 2.5rem;
      height: 2.5rem;
      background-color: #1f2937;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      font-size: 1rem;
    }

    .social-btn:hover {
      background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
    }

    .footer-bottom {
      max-width: 1280px;
      margin: 0.5rem auto 0;
      padding-top: 0rem; 
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    .footer-bottom p {
      color: #9ca3af;
      font-size: 0.875rem;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #9ca3af;
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: white;
    }
    p{margin: 0 0 15px 0;}

@media (max-width: 768px) {
  .nav-links {
    margin-top: 50px;
    gap: 1rem;
  }

  .nav-links a{
    padding: 0px;
  }
}