*{
    padding: 0;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 300;
}

.contact-container {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

/*Contact-Form-Section*/

.contact-form-section {
    flex: 1;
    padding-right: 40px;
}

.contact-form-section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.input-field {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none; 
    background-color: #e6f5ff;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    outline: none;
}

.input-field:focus {
    box-shadow: 0 0 0 3px rgba(0, 150, 180, 0.2);
}

.input-field::placeholder {
    color: #777; 
}

.message-field {
    height: 120px; 
    resize: vertical; 
}

.send-button {
    background-color: #00bcd4; 
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.send-button:hover {
    background-color: #00a0b3; 
}

.rocket-emoji {
    margin-left: 8px;
    font-size: 20px;
}

/*Image Section*/
.contact-illustration {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-image {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .contact-form-section {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-illustration {
        order: -1;
        margin-bottom: 20px;
    }
}

/* Footer Section */
.contact-footer {
    background-color: #333;
    color: #fff; 
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #555; 
}

.footer-section {
    width: 30%; 
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #00bcd4; 
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section a {
    font-size: 18px;
    color: #ccc;
    text-decoration: none;
    transition: 0.5s;
}

.footer-section a:hover {
    color: #fcfcfc;
    letter-spacing: 1px;
    margin-left: 10px;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #00bcd4;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%; 
    margin-right: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}

.social-icons a:hover {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 18px;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }
}