.hc-parking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hc-parking-title {
    text-align: center;
    margin-bottom: 30px;
}

.hc-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 44.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 40px;
}

.hc-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hc-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstü: 3 Sütun */
    gap: 20px;
}

.hc-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Tablet: 2 Sütun */
@media (max-width: 992px) {
    .hc-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil: 1 Sütun */
@media (max-width: 600px) {
    .hc-image-grid {
        grid-template-columns: 1fr;
    }
}