/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #897ee6;
  }

  /* Header Styles */
  header {
    color: #897ee6;
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-family: "Century Gothic";
    font-weight: 550;
    text-decoration: underline;
    font-size: 40px;
    margin: 0;
    margin-left: 20px;
  }

  /* Navigation Styles */
  nav {
    margin-right: 20px;
  }

  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  nav li {
    display: inline;
    margin-left: 20px;
  }

  nav a {
    font-family: Arial, sans-serif;
    color: #897ee6;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: #007bff;
  }

  #second-title{
    text-align: center;
  }

  /* Main Content Styles */
  .content {
    text-align: justify;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about-text{
    margin-left: 20px;
  }

  /* Add space between images and content */
  .about-image{
    margin-bottom: 20px;
    margin-right: 40px;
  }
  .service-image {
    margin-bottom: 20px; /* Adjust the value as needed */
    margin-left: 20px;
  }

  .content {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 20px; /* Adjust the value as needed */
  }

  .content h2 {
    font-family: "Century Gothic";
    /* font-size: 28px; */
    margin-bottom: 20px;
    color: #897ee6;
  }

  .content p {
    font-family: Arial, sans-serif;
    color: rgb(115, 107, 107);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .content img {
    max-height: 440px;
    max-width: auto;
  }

  /* Images Styles */
  .about-image, .service-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .about-image img, .service-image img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .about-image:hover img, .service-image:hover img {
    transform: scale(1.05);
  }

  /* Video Container Styles */
  #video-container {
    margin: 50px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  #video-container:hover {
    transform: scale(1.05);
  }

  #video-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }
  
  footer {
    color: #6d61d8;
    text-align: center;
    font-family: "Arial, sans-serif";
    font-weight: 600px;
  }

  /* Add custom styles here */
  /* For small screens */
  @media (max-width: 576px) {
    /* Adjustments for small screens */
  }

  /* For medium screens */
  @media (min-width: 576px) {
    /* Adjustments for medium screens */
  }

  /* For large screens */
  @media (min-width: 992px) {
    /* Adjustments for large screens */
  }