.Conditions-header {
    width: 100%;
    height: 50vh;
    background-color: var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    margin-top: 70px;
}
.Conditions-header-itme {
    max-width: 600px;
    text-align: center;
}
.Conditions-header-itme h1 {
    font-size: calc(2rem , 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    color: var(--off-white);
}
.Conditions-header-itme p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: orange;
  line-height: 1.7;
}


/* Conditions-container */
.Conditions-container {
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    padding: 50px;
    background-color: var(--md-blue);
    box-shadow: var(--shadow-md);
}
.Conditions-container-itme {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


@media (max-width: 600px) {
    .Conditions-header {
        padding: 20px;
    }
}