.container--wide {
    max-width: 1200px;
}

.container {
    width: 100%;
    margin: 0px auto;
}

@media (min-width: 768px) {
    .section__title {
        font-size: 40px;
    }
}

.section__title {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.center {
    text-align: center;
}

@media (min-width: 768px) {
    .grid3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid3 {
    margin-top: 46px;
    display: grid;
    gap: 22px;
}

.card {
    box-shadow: 0 8px 24px rgba(10,22,40,0.06);;
    background: rgb(255, 255, 255);
    border-radius: 32px;
    padding: 28px;
}

.card:hover{ box-shadow: 0 18px 40px rgba(10,22,40,0.10); }

.card__title {
    font-size: 20px;
    font-weight: 800;
    margin: 0px 0px 10px;
}

.card__text {
    color: var(--muted);
    line-height: 1.7;
    margin: 0px;
}

.card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
}

.form-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 200px;
}

.form-button {
    display: grid;
    justify-items: center;
    width: 100%;
}

form {
    color: var(--color-headings);
    font-family: "Raleway", sans-serif;
}

form button {
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 102, 255, 0.25) 0px 14px 30px;
    background: #0066FF;
    height: 56px;
    padding: 0 52px;
    font-size: 20px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
}

form label {
    font-weight: 700;
}

form button:hover {
    background: #0052CC;
}

form legend {
    font-size: 40px;
    font-weight: 800;
}

form .header {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.inquiries {
    box-shadow: 0px 0px 24px rgba(3, 7, 12, 0.108);
    width: 75%;
    padding: 4%;
    background: #fff;
    border-radius: 32px;
}

.main-form {
    width: 100%;
    max-width: 1200px;
}

form legend {
    font-size: 40px;
}

fieldset {
    border: none;
}

.input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 0 18px;
    font-size: 18px;
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.02);
    outline: none;
}

textarea {
    height: 225px;
    resize: none;
}

.message.error {
    margin-top: 150px;
    margin-bottom: 0;
    box-shadow: 0 8px 24px rgba(10,22,40,0.06);;
    border: none;
    border-radius: 32px;
    padding: 28px;
    font-weight: bold;
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    margin-left: 25%;
    margin-right: 25%;
    text-align: center;
}

.message.success {
    margin-top: 150px;
    margin-bottom: 0;
    box-shadow: 0 8px 24px rgba(10,22,40,0.06);;
    border: none;
    border-radius: 32px;
    padding: 28px;
    font-weight: bold;
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    margin-left: 25%;
    margin-right: 25%;
    text-align: center;
}