@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
    --main-color: #008000;
    --black: #222;
    --white: #fff;
    --light-black: #777;
    --light-white: #fff9;
    --dark-bg: rgba(0,0,0.7);
    --light-bg: #eee;
    --border: .1rem solid var(--black);
    --box-shadow:0 .5rem 1rem  rgba(0,0,0,.1);
    --text-shadow:0 1.5rem 3rem  rgba(0,0,0,.3);


}
.heading {

    position: relative;
    width: 100%;
    height: 60vh;
    background: url(/asset/julian-hochgesang-psGV5KhidlY-unsplash.jpg) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    
}
.heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 1, 47, 0.5); /* Overlay to improve text visibility */
}
.heading h1 {
    font-size: 5rem;
    position: relative;
    z-index: 1;
    color: #fff;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section {
    margin-bottom: 20px;
}

.section h2 {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.section h2 i {
    margin-right: 10px;
}

.section p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.contact-info, .map {
    flex: 1 1 45%;
    margin: 10px;
}


.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 768px) {
    .contact-info, .map {
        flex: 1 1 100%;
    }
}