@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
}

.contact-info,
.contact-form {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
}

.contact-info h2,
.contact-form h2 {
    font-family: "League Spartan", "Poppins", sans-serif;
    color: #F28C8C;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-form .form-label {
    font-weight: bold;
    color: #555;
}

.contact-form .form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 15px;
}

.contact-form .form-control:focus {
    border-color: #ff5722;
    box-shadow: none;
}

.contact-form button {
    background: linear-gradient(135deg, #ffe4e1, #8fd9a8);
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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


.footer {
    background: linear-gradient(135deg, #ffe4e1, #8fd9a8) !important;
}