.section-grid {
    align-items: start;
}

@media (min-width: 900px) {
    .section-grid {
        grid-template-columns: 1fr 2.25fr;
    }

    .contact-text {
        padding-top: 1.75rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #000;
    font-size: 1rem;
    outline: none;
    resize: none;
}

.contact-form textarea {
    height: 130px;
}

.submit-button-container {
    display: flex;
    justify-content: center;
    margin-top: .75rem;
}

.contact-form button {
    background-color: black;
    color: white;
    height: 60px;
    width: min(250px, 100%);
}

.contact-form button:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

.faq-content {
    gap: 1rem;
    grid-column: 1/-1;
}

.faq-content details {
    border: 1px solid;
}

.faq-content details p {
    padding: 0 1rem 1rem 1rem;
}

.faq-content summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.faq-content summary:hover {
    background-color: #f0f0f0;
}

.faq-content summary::after {
    content: "▼";
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-content details[open] summary::after {
    transform: rotate(180deg);
}

.faq-content p {
    margin-block-end: 0;
}