main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 20px;
}

/* FORM STYLES */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f5f9fc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

form input,
form textarea {
    padding: 12px 14px;
    border: 1px solid #064273;
    font-size: 1em;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #0b6aa2;
    box-shadow: 0 0 0 2px rgba(11, 106, 162, 0.2);
    outline: none;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}



form button:hover {
    background: #1e2a36;
}

/* INFO PANEL */
section.info {
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
}

section.info h2 {
    font-size: clamp(2em, 2vw, 3em);
    margin-bottom: 0.5em;
    color: #1e1e1e;
}

section.info p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    max-width: 350px;
    text-align: left;
}

section.info .contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

section.info .contact a {
    color: #064273;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

@media screen and (max-width: 800px) {
    main {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 20px;
    }

    section.info {
        align-items: center;
    }

    section.info p {
        text-align: center;
    }
}
