body{
    background: linear-gradient(to bottom, #f0f8ff, #e6f7ff); /* Light blue gradient */
}/* Contact Section Styling */
.contact-section {
    text-align: center;
    padding: 50px 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.contact-form {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #d01a5f;
}

.contact-form form input,
.contact-form form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form form button {
    background-color: #d01a5f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form form button:hover {
    background-color: #b01550;
}

.contact-call {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-bubble {
    background-color: #d01a5f;
    color: #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.call-bubble p:first-child {
    font-size: 1.1em;
    font-weight: bold;
}

.call-bubble p:last-child {
    font-size: 1.5em;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .call-bubble {
        font-size: .9em;
        width: 150px;
        height: 150px;
    }
}
