.contact-info-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}
.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
.contact-form {
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.contact-form button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #0056b3;
}
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.contact-form div {
    flex: 1 1 calc(50% - 20px);
}
.contact-form div.full-width {
    flex: 1 1 100%;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-form button {
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.contact-form button:hover {
    background-color: #45a049;
}