.contact-section {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.contact-hero {
    background-image: url('images/contact-hero.jpg');
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-hero .overlay {
    filter: invert(1);
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-top: 1px solid black;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 24px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', sans-serif;
    min-height: 100vh;
    background-color: #f2f2f2;
}

.contact-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 50%;
   background-color: #004d4a;
      color: white;
    padding: 50px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info ul {
    list-style: none;
    margin-left: -40px;
    margin-top: 20px;
}

.contact-info ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info ul li img {
    margin-right: 10px;
}

.contact-info .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffcc00;
}

.contact-form {
    width: 50%;
    padding: 50px;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4b0082;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background-color: #ffcc00;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #e6b800;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        width: 90%;
    }

    .contact-info, .contact-form {
        width: 100%;
        padding: 20px;
    }
}

.contactt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: -35px;
    margin-bottom: 30px;
}