.hero-section {
    background: linear-gradient(to bottom, rgba(30, 34, 45, 0.7), rgba(30, 34, 45, 0.7)), url('img/RC-NEWS-DITCH-PAPER-0918.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section .content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section .content p {
    font-size: 20px;
}

.hero-section .form-container {
    background-color: #005ea2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    max-width: 84%;
    margin-top: 2rem;
}

.hero-section .form-container .form-control {
    background-color: #fff;
    color: #000;
}

.form-container input,
.form-container button {
    border-radius: 5px;
}

.form-container button {
    background-color: #ffc222;
    border: none;
    font-weight: 400;
}

.trusted-section {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.features-section h2 {
    font-weight: 800;
    text-decoration: underline;
}

.trusted-section img {
    margin-right: 10px;
    width: 50px;
}

.trusted-section strong {
    font-size: 2rem;
    font-weight: 400;
}

.features-section .card {
    transition: transform 0.3s ease;
    margin: 0px 25px;
  }

.bg-cds {
    background-color: #5A8BBC;
}
  
  .features-section .card:hover {
    transform: translateY(-10px);
  }

  .features-section .icon img {
    width: 80px;
    height: 80px;
  }

  .features-section .btn {
    border-radius: 10px;
  }
  

.how-it-works {
    background-color: rgb(235, 242, 248);
}

.how-it-works .steps {
    padding-left: 15px;
}

.how-it-works .steps strong {
    display: block;
    margin-bottom: 5px;
}


.about-section {
    text-align: center;
    padding: 60px 0px;
  }

  .about-section h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2;
    text-decoration: underline;
  }
  
  .about-section p {
    font-size: 1.8rem;
    margin-bottom: 20px !important;
    max-width: 87%;
    margin: 0 auto;
  }

  .about-section .btn-custom {
    background-color: #ffc107;
    color: #000;
    font-weight: 400;
    font-size: 1.6rem;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .about-section .btn-custom:hover {
    background-color: #e0a800;
  }

  .form-section {
    background-image: linear-gradient(to bottom, rgba(30, 34, 45, 0.36), rgba(30, 34, 45, 0.36)), url(img/back_2.png);
    background-size: cover;
    padding: 60px 15px;
  }
  .form-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .form-container img {
    width: 100%;
    max-width: 600px;
    padding: 0px 15px;
    height: auto;
    border-radius: 0;
    object-fit: cover;
  }
  .form-container .form-content {
    flex: 1;
    padding: 20px;
  }
  .form-container .form-control {
    margin-bottom: 15px;
    border-radius: 0px;
    background-color: transparent;
    color: #fff;
  }
  .form-container .form-control:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
  }
  .form-container .btn-submit {
    background-color: #000;
    color: #fff;
    max-width: 200px;
    border: none;
    padding: 10px 20px;
    border-radius: 0px;
    transition: background-color 0.3s ease;
  }
  .form-container .btn-submit:hover {
    background-color: #444;
  }
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background-color: #f8f9fa;
  }