
*{
    box-sizing: border-box;
    margin: 0
}
.hero-section {
  position: relative;
  height: 400px;
  background: url('../img/bg-10.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero-section::before {
  align-items: center;
}

.hero-section::before, integrity-section::before, inspection-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-section span {
  position: relative;
  padding: 100px 0 0 60px;
  z-index: 2;
}

.contact-detail {
    font-family: var(--other-font);
    font-size: 2.6rem;
    display: block;
    color: #fff;
}


.content-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 20px 20px;
    gap: 40px;
}

.form-container, .info-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 10px;
}
    .form-container h2 {
        margin-bottom: 20px;
        color: #368deb;
    }
.git-header {
    color: #368deb;
    font-weight: bold;
    font-family: var(--heading-font);
    font-size: 2.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 20px 0 0 0;
}
.contact-form div{
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    color: #424242;
    font-family: var(--other-font);
    font-size: 1rem;
}

input, select, textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fafafa;
    margin-top: 5px;
}
.policy-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-check input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #007BFF;
}

.policy-agreement a {
  color: #007BFF;
  text-decoration: underline;
}


button[type="submit"] {
    padding: 10px 20px;
    background-color: #368deb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-home {
    margin-top: 10px;
    display: inline-block;
    color: #368deb;
    text-decoration: none;
    font-weight: bold;
}

.info-container {
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .info-container h3 {
        margin-bottom: 10px;
        color: #368deb;
        font-size: 1.3rem;
        font-family: var(--heading-font);
    }

    .info-container p {
        margin-bottom: 15px;
        font-size: 1rem;
        font-family: var(--body-font);
    }

/*Width greater than 768px*/
@media (min-width: 768px){
    .hero-section span{
        padding: 0 0 0 60px;
    }
    .content-section{
            gap: 40px;

    }
}
