* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
    color: #333;
  }

  header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/header.jpeg') center/cover no-repeat;
    color: #fff;
    padding: 10rem 2rem;
    text-align: center;
  }

  header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  header p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .btn-primary {
    background: #036AB8;
    color: #fff;
    margin-top: 15px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .btn-primary:hover {
    background: #357ab8;
  }

  .section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .why-integrate {
    background-color: #F5F5FA;
  }

  .section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .why-integrate .why-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .why-integrate .why-text {
    flex: 1 1 50%;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .why-integrate .why-block {
    margin-bottom: 2rem;
  }
  
  .why-integrate .why-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .why-integrate .why-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .why-integrate .why-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .why-integrate .why-image img:hover {
    transform: scale(1.03);
  }
  
  

  .cta {
    background: #e8f1fc;
    text-align: center;
    padding: 4rem 2rem;
  }

  .cta h2 {
    margin-bottom: 1rem;
  }

  .faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    width: 100%;
  }

  .faq-question {
    padding: 1rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    background: #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question::after {
    content: '+';
    font-weight: normal;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question::after {
    content: '-';
  }
  

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 500px;
  }

  footer {
    background: #121212;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
  }

  .how-it-works .steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .step {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    max-width: 300px;
    text-align: center;
    flex: 1 1 250px;
  }
  
  .step-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #036AB8;
    background-color: #e8f1fc;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: inline-block;
  }
  
  