 /* General reset and body styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      background-color: #f4f4f4;
      color: #333;
    }

    a {
      color: #0056b3;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Wrapper styles */
    .wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Header and navigation styles */
    .navWrapper {
      background-color: #4A90E2;
      padding: 10px 0;
    }

    .companyName h2 {
      color: #fff;
      text-align: center;
      font-size: 24px;
    }

    /* Main section styles */
    .main_section {
      background-color: #fff;
      padding: 40px;
      margin: 20px 0;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .about_row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .txt_col {
      flex: 1;
      margin-right: 20px;
    }

    .about_desc {
      font-size: 18px;
      line-height: 1.8;
    }

    .img_col {
      flex: 1;
      text-align: center;
    }

    .about-img {
      width: 100%;
      height: auto;
      max-width: 600px;
    }

    /* Contact section styles */
    .form_section {
      background-color: #f9f9f9;
      padding: 30px;
    }

    .company-info h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .company-info ul {
      list-style: none;
    }

    .company-info li {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .fa {
      margin-right: 10px;
      color: #333;
    }

    /* Footer styles */
    .footer-section {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 20px 0;
    }

    .copy {
      font-size: 14px;
    }