body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
  }
  
  .logo {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }

  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .social-media img {
    width: 40px;
    height: 40px;
  }

  .navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .navigation a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .navigation a:hover {
    background-color: #333;
    color: #fff;
  }

  .about-section {
        height: 400px;
        position: relative;
        overflow: hidden;
        /* margin: 10px; */
        /* padding: 50px; */
      }

      .about-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url("{{url_for('static', filename='images/about-bg.jpg')}}"); */
        /* background-size: cover; */
        /* background-position: center; */
        /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)); Gradient background for the about section */
        transform: translateZ(0) scale(1.1);
        z-index: -1;
      }

      .about-content {
        /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)); Gradient background for the about section */
        position: relative;
        z-index: 1;
        /* color: #fff; */
        text-align: center;
        padding-top: 150px;
      }

      .about-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
      }

      .about-content p {
        font-size: 18px;
        line-height: 1.5;
      }