.apple-section {
    margin-top: 30px;
    text-align: center;
  }
  
  .apple-section img {
    width: 100%;
    height: 500px;
    max-width: 100%;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
  }
  
  .offgrid-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 12px;
  }
  
  .offgrid-image {
    flex: 1 1 40%;
    padding-right: 20px;
  }
  
  .offgrid-image img {
    max-width: 80%;

    height: 450px;
    border-radius: 10px;
  }
  
  .offgrid-text {
    flex: 1 1 55%;
  }
  
  .offgrid-text h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #222;
  }
  
  .offgrid-text p {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
  }
  
  .grid-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 12px;
  }
  
  .grid-image {
    flex: 1 1 40%;
    padding-right: 20px;
  }
  
  .grid-image img {
    max-width: 80%;
    height: 300px;
    border-radius: 10px;
  }
  
  .grid-text {
    flex: 1 1 55%;
  }
  
  .grid-text h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #222;
  }
  
  .grid-text p {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f7f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.benefits-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.benefits-section h2 span {
    color: #2b2b2b;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.benefit-card img {
    width: 40px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    color: #333;
}

.how-it-works {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step:nth-child(even) .step-text {
    order: 2;
}

.step-number {
    background-color: #f4c542;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.step-text {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.step-text h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #222;
}

.step-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.step-img {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.step-img img {
    max-width: 100%;
    height: auto;
}

  