/* sitemap.css */
.sitemap-section {
    background-color: #f9f9f9; /* Light background for the sitemap */
    padding: 40px 0; /* Padding around the section */
    text-align: left;
}

.container {
    display: flex;
    justify-content: space-between; /* Distribute columns evenly */
    gap: 2%; /* Space between the columns */
}

.sitemap-column {
    width: 33.3%; /* 3 equal columns */
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for the columns */
}

.sitemap-column h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.sitemap-column ul {
    list-style-type: none;
    padding: 0;
}

.sitemap-column ul li {
    margin-bottom: 10px;
}

.sitemap-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1em;
}

.sitemap-column ul li a:hover {
    color: #ff66b2; /* Pink hover effect */
}

.sitemap-column p {
    font-size: 1em;
    color: #555;
    margin-bottom: 8px;
}

.sitemap-column .map-placeholder {
    width: 360px;
    height: 360px;
    background-color: #ddd; /* Light gray placeholder */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack columns vertically on small screens */
        gap: 20px; /* Add spacing between stacked columns */
    }

    .sitemap-column {
        width: 100%; /* Full width for each column */
    }
}
