@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
@import "../components/header.css";
@import "../components/footer.css";
@import "../shared.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: white;
    overflow-x: hidden;
    color: #111;
}

main {
    margin-top: 85px;
}




/* =========================== */
/*     Help Section Styles     */
/* =========================== */

.help-section {
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.help-header {
    text-align: center;
    padding: 35px 20px 40px;
}

.help-label {
    display: block;
    font-size: 16px;
    color: #111;
    margin-bottom: 15px;
}

.help-header h2 {
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #111;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    place-items: center;
    padding-bottom: 45px;
    border-top: 1px solid #d9d9d9;
    padding-top: 45px;
}

.help-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    color: #111;
}

.help-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    margin: 0;
}





/* =========================== */
/*     Contact Form Styles     */
/* =========================== */
.form-container {
    max-width: 800px;
    margin: 45px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.row {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

input,
textarea {
    width: 100%;
    border: 1px solid #d6d6d6;
    background: transparent;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

input {
    height: 44px;
}

textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid #d6d6d6;
}

.full-width {
    margin-bottom: 20px;
}

button {
    width: 175px;
    height: 55px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: color 0.3s ease, background 0.3s ease;
    border: 1px solid #000;
}

button:hover {
    color: #000;
    background: transparent;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 20px;
    }

    h1 {
        font-size: 16px;
    }

    button {
        width: 100%;
    }
}


