.containers {
    width: 100%;
    margin: 0 auto;
    background-color: #FFF5E5;
    padding: 50px 20px;
    text-align: center;
border-radius: 0px 0px 50px 50px;
}

.mid{
    text-align: center;
    font-size: 30px;
    margin-top: 5px;
}
.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.highlight {
    color: #3b73ff; /* Highlighting the Link Building service */
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;  /* Ensures content wraps on smaller screens */
}

.step {
    
    padding: 30px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
    
    border-radius: 10px;
    margin: 10px 0;  /* Adds spacing between steps */
}



.icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .title {
        font-size: 2rem;
    }

    .steps {
        justify-content: center;
    }

    .step {
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 90%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.6rem;
    }

    .icon img {
        width: 50px;
        height: 50px;
    }

    h3 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }
}

.containerss {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    background-color: #FFF5E5; /* Light Green background */
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.highlight {
    color: #3b73ff; /* Blue highlight color */
}

.subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #FF7043; /* Button color */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #F4511E; /* Darker orange on hover */
}

.note {
    font-size: 1rem;
    color: #555;
    margin-top: 20px;
    line-height: 1.6;
}

.gg{
 
    width: 80%;
    margin: 50px auto;
    padding: 20px;
   

}

.faq-item {
    margin-bottom: 20px;
}

.faq-header {
    display: flex;
    align-items: center;

    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
}

.faq-header .icon {
    font-size: 20px;
    margin-right: 10px;
}

.faq-header span {
    font-size: 20px;
    font-weight: bold;
}

.question {
    margin-top: 10px;
}

.toggle-question {
    background-color: #e0e0e0;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
}

.answer {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
}

.answer p {
    margin-bottom: 10px;
}

.features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
    width: 80%;
  }
  
  .feature {
    display: flex;
    align-items: center;
    text-align: left;
  }
  
  .feature img {
    width: 55px; /* Icon size */
    height: 55px;
    margin-right: 10px; /* Space between icon and text */
  }
  
  .feature p {
    font-size: 18px;
    color: #555;
    margin: 0;
  }
  
  /* Media query for smaller screens */
  @media (max-width: 768px) {
    .features {
      width: 90%; /* Adjust width for smaller screens */
      flex-direction: column; /* Stack the items vertically */
      align-items: flex-start; /* Align items to the left */
    }
  
    .feature {
      margin-bottom: 10px; /* Add spacing between each item */
    }
  
    .feature img {
      width: 25px; /* Smaller icons for smaller screens */
      height: 25px;
    }
  
    .feature p {
      font-size: 12px; /* Slightly smaller text */
    }
  }
  
  /* Media query for very small screens (e.g., mobile) */
  @media (max-width: 480px) {
    .features {
      width: 100%; /* Full width for very small screens */
    }
  
    .feature {
      text-align: center; /* Center text on very small screens */
    }
  
    .feature img {
      width: 20px; /* Even smaller icons */
      height: 20px;
    }
  
    .feature p {
      font-size: 10px; /* Even smaller text */
    }
  }
  
  