* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #1f2937;
}

main {
    width: min(900px, 90%);
    margin: 0 auto;
    padding: 60px 0;
}

.hero {
    margin-bottom: 40px;
}

.eyebrow {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    max-width: 650px;
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.1;
}

.intro {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
}

.enquiry-section {
    max-width: 650px;
    padding: 32px;
    background: white;
    border-radius: 12px;
}

.enquiry-section h2 {
    margin-top: 0;
}

form {
    display: grid;
    gap: 20px;
}

.form-field {
    display: grid;
    gap: 8px;
}

label {
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    font: inherit;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

button {
    padding: 14px 20px;
    font: inherit;
    font-weight: bold;
    border: 0;
    border-radius: 6px;
    background: #111827;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #374151;
}

@media (max-width: 600px) {
    main {
        padding: 32px 0;
    }

    h1 {
        font-size: 34px;
    }

    .enquiry-section {
        padding: 22px;
    }
}
