body {
    font-family: Arial, sans-serif;
    background-color: #f5f8fc;
    margin: 0;
    padding: 20px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.text-section {
    flex: 1;
    padding-right: 50px;
}

.text-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.text-section h3 {
    color: #007bff;
    font-size: 18px;
    margin-bottom: 10px;
}

.text-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.text-section .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.text-section .cta-button:hover {
    background-color: #0056b3;
}

.image-section {
    flex: 1;
    text-align: right;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .text-section {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .image-section {
        text-align: center;
    }
}







body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
  }

  .content-section {
    text-align: center;
    padding: 50px 20px;
  }

  .content-section h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .content-section p {
    font-size: 18px;
    color: #666;
    margin: 0;
  }


  .carousel-item {
    text-align: center;
}
.carousel-item img {
    max-width: 500px;
    margin-bottom: 20px;
}





.testimonial-box {
    background-color: #d9ebf9; /* Light blue background */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.testimonial-box p {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
}

.testimonial-role {
    font-size: 1rem;
    color: #888;
}





.cta-section {
    background-color: #007bff; /* Blue background */
    color: white;
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.cta-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-button {
    background-color: rgb(202, 201, 201);
    color: #007bff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.25rem;
    margin: 0 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #0056b3;
    color: white;
}













body {
    font-family: Arial, sans-serif;
}

.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.faq-question:after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}






  
  .footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
  }
  .footer .footer-title {
    color: #00A1FF;
    margin-bottom: 15px;
  }
  .footer-links a {
    color: #bbb;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #fff;
  }
  .subscribe-box input {
    border: none;
    border-radius: 3px;
    padding: 10px;
    width: 100%;
  }
  .subscribe-box button {
    background-color: #00A1FF;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .subscribe-box button:hover {
    background-color: #007bff;
  }




.copyright {
    font-size: 0.85em;
    color: #bbb;
}


  
  
 
