* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

main {
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 72px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.category {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    text-transform: uppercase;
    opacity: 0.8;
}

.acquisition-note {
    margin-top: 0;
    margin-bottom: 22px;
    color: #a78bfa;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.8;
}

form {
    width: 100%;
    max-width: 500px;
    margin-top: 0;
}

input,
textarea {
    width: 100%;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 14px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 1700px) {
    .related-grid {
        column-count: 4;
    }
}

@media (max-width: 1200px) {
    .related-grid {
        column-count: 3;
    }
}

@media (max-width: 850px) {
    .related-grid {
        column-count: 2;
    }

    h1 {
        font-size: 42px;
    }
}

@media (max-width: 520px) {
    .related-grid {
        column-count: 1;
    }

    h1 {
        font-size: 30px;
    }
}
