.secondary-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.secondary-content > * {
    flex: 1;
}

.contact-us-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us-form {
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.contact-us-form input,
.contact-us-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--light-outlinevariant);
    margin-bottom: 16px;
    font-size: var(--body-body-large-font-size);
    font-family: var(--body-body-large-font-family);
    font-weight: var(--body-body-large-font-weight);
    line-height: var(--body-body-large-line-height);
    font-style: var(--body-body-large-font-style);
    resize: none;
}

.contact-us-form label {
    margin-bottom: 8px;
    font-family: var(--label-label-medium-font-family);
    font-size: var(--label-label-medium-font-size);
    line-height: var(--label-label-medium-line-height);
    font-weight: var(--label-label-medium-font-weight);
    font-style: var(--label-label-medium-font-style);
    color: var(--light-onsurfacevariant);
}

.contact-us-form button {
    padding: 12px 24px;
    border-radius: 16px;
    border: none;
    background-color: var(--light-primary);
    color: var(--light-onprimary);
    font-family: var(--label-label-large-font-family);
    font-size: var(--label-label-large-font-size);
    line-height: var(--label-label-large-line-height);
    font-weight: var(--label-label-large-font-weight);
    font-style: var(--label-label-large-font-style);
    cursor: pointer;
}

#notification {
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: var(--body-body-medium-font-family);
    font-size: var(--body-body-medium-font-size);
    line-height: var(--body-body-medium-line-height);
    font-weight: var(--body-body-medium-font-weight);
    font-style: var(--body-body-medium-font-style);
    color: var(--light-inverseonsurface);
    background-color: var(--light-inversesurface);
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

@media (min-width: 768px) {
    .secondary-content {
        flex-direction: row;
        gap: 64px;
        align-items: start;
    }
}