body {
    font-family: "Cormorant Garamond", serif;
    margin: 0;
    padding: 0;
    background-color: #f5c49d;
}

.head {
    text-align: center;
    padding: 20px;
    margin-top: 100px;
    color: #8B4513;
}

.content {
    color: #4b2204;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; 
    padding: 20px;
}

.map iframe {
    width: 400px; 
    height: 400px;
    border: 0;
    border-radius: 8px;
}

.text {
    max-width: 400px;
    font-size: 17px;
}

.text h2 {
    margin-top: 0;
}

.text p {
    line-height: 1.8;
}

.location_button {
    padding: 20px 30px;
    background-color: black;
    color: white;
    border: none;
    text-decoration: none;
    z-index: 1; 
    font-family: 'Times New Roman', Times, serif, sans-serif;
    font-size: 20px;
  }
  
  .button:hover {
    background-color: white;
    color: #8B4513;
  }

/* Responsive Design */
@media (max-width: 768px) {
    .head {
        margin-top: 80px;
        padding: 15px;
    }

    .content {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .text {
        max-width: 100%;
        font-size: 16px;
    }

    .map iframe {
        width: 100%;
        height: 300px;
    }

    .location_button {
        padding: 15px 25px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .head {
        margin-top: 100px;
        padding: 10px;
    }

    .head h1 {
        font-size: 24px;
    }

    .content {
        padding: 10px;
    }

    .text {
        font-size: 14px;
    }

    .text h2 {
        font-size: 18px;
    }

    .map iframe {
        height: 250px;
    }

    .location_button {
        padding: 12px 20px;
        font-size: 16px;
    }
}