
        body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            background-color: #0b2269;
            color: #ffffff;
        }
        .footer {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            padding: 60px 40px;
            background-color: #0b2269;
            border-top: 1px solid #1c337d;
        }
        .footer-column {
            flex: 1 1 200px;
            margin: 20px;
        }
        .footer-column h4 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li {
            margin-bottom: 10px;
            color: #b0b8d2;
            font-size: 14px;
        }
        .footer-column ul li:hover {
            color: #ffffff;
            cursor: pointer;
        }
        .newsletter input {
            padding: 10px;
            width: 70%;
            border: none;
            border-radius: 20px;
            margin-top: 10px;
        }
        .social-icons {
            margin-top: 20px;
        }
        .social-icons i {
            margin-right: 15px;
            font-size: 18px;
            color: #ffffff;
            cursor: pointer;
        }
        .footer-bottom {
            text-align: center;
            padding: 20px;
            background-color: #0a1a4f;
            color: #cccccc;
            font-size: 14px;
        }

        /* revews */

        /* Base Styles */
.testimonial {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

.testimonial-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.testimonial-image img {
  border-radius: 50%;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.testimonial-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.stars {
  color: #1a5fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #000;
}

.testimonial-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-content hr {
  border: none;
  border-top: 2px solid #1a5fff;
  width: 100%;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.quote-icon {
  font-size: 36px;
  color: #1a5fff;
  line-height: 1;
}

.testimonial-author strong {
  font-size: 16px;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-content {
    padding: 0 10px;
  }

  .testimonial-author {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .testimonial-content h2 {
    font-size: 22px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  .quote-icon {
    font-size: 28px;
  }
}

