* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    background-color: #EDE9E1;
    color: #333;
}

header {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

nav a.active {
    border-bottom: 2px solid #333;
}

.cta {
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.hero {
    position: relative;
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background-color: white;
    background-size: cover;
    background-position: center;
}

.contact-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 30px;
    position: relative;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.hero-description a {
    color: #000;
}

.contact-section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 20px;
}

.map-container {
    width: 50%;
    height: 700px;
    margin-bottom: 0;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-container {
    margin-right: 10px;
    font-size: 24px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    resize: none;
}

button {
    width: 80px;
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    background-color: #EDE9E1;
    text-decoration: none;
}

button:hover {
    background-color: #000000;
    color: white;
}

.social-links {
    text-align: center;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    background-color: black;
    font-weight: 900;
}

/* Add these media queries at the end of your existing <style> section */

@media screen and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .map-container {
        width: 100%;
        height: 400px;
        margin-bottom: 40px;
    }

    .form-container {
        width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        display: none;
    }

    header {
        position: relative;
    }

    .logo {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .contact-info {
        font-size: 14px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .icon-container {
        margin-right: 0;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 14px;
    }

    button {
        width: 100%;
    }
}

/* Add a mobile menu button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    background-color: transparent;
    color: inherit;
}

/* Update the nav styles in your media query */
@media screen and (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #EDE9E1;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        width: 100%;
        text-align: center;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: block;
        width: auto;
        padding: 10px;
    }
}