/* Base Styles */
.contact-persons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow elements to wrap on smaller screens */
}

.contact-person {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Add space between cards */
}

.contact-person h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-person p {
    font-size: 1em;
    margin: 5px 0;
}

/* Tablet (Medium screens) */
@media (max-width: 768px) {
    .contact-person {
        width: 45%; /* Two columns */
    }
}

/* Mobile (Small screens) */
@media (max-width: 480px) {
    .contact-person {
        width: 100%; /* Stack vertically */
    }

    .contact-persons {
        justify-content: center; /* Center the content on small screens */
    }
    
    .container__form-title {
        font-size: 1.2em; /* Adjust title font size for small screens */
    }
}
