form label {
    font-family: 'Josefin Sans', sans-serif;
    color: #8c281a;
    font-size: 16px;
    text-align: left;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
}

form label input[type="radio"] {
    width: auto;
    background: none;
    transform: none;
}

form > p {
    font-weight: bold;
    color: #8c281a;
    font-size: 18px;
}

form > label:has(input[type="email"]) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

iframe {
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: calc(100% - 20px);
}

@media (max-width: 600px) {
    iframe {
        width: 100%;
        height: 300px;
    }
}