body {
    margin-top: 60px; /* Adjust based on navbar height */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 50px 90px;
    border-radius: 10px;
    margin-top: 60px;
}

.contact-content {
    max-width: 50%;
}

.contact-heading {
    color: green;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact h2 {
    font-size: 2rem;
    font-weight: bold;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-info {
    font-size: 1rem;
    line-height: 1.8;
}

.contact-info a {
    color: blue;
    text-decoration: none;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-image img {
    max-width: 400px;
}

@media (max-width: 1024px) {
    .contact {
        flex-direction: column;
        padding: 40px 50px;
        text-align: center;
    }

    .contact-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .contact-image img {
        max-width: 100%;
        height: auto;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-text,
    .contact-info {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 30px 20px;
    }

    .contact h2 {
        font-size: 1.5rem;
    }

    .contact-text,
    .contact-info {
        font-size: 0.9rem;
    }
}

