/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.centered-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.centered-div img {
    width: 250px;
    height: 250px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.centered-div img:hover {
    transform: scale(1.1);
}

.contact-heading, .contact-phone, .contact-email {
    margin-bottom: 15px;
}

.contact-heading h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-phone p, .contact-email p {
    font-size: 16px;
}

/* Grid layout for listings */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between items */
    width: 100%; /* Full width */
    max-width: 900px; /* Set a maximum width */
}

.grid-item {
    background-color: white; /* Background color for items */
    border: 1px solid #ccc; /* Border for items */
    padding: 10px; /* Inner padding */
    text-align: center; /* Center text */
}

.grid-item img {
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
}

.back-button img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.4s ease;
}

.back-button img:hover {
    transform: scale(1.1);
}