* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    padding: 20px;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #c53945;
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 10;
}

.logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
}

.title {
    margin-top: 80px;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.grid-item {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Makes it square */
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.grid-item:hover {
    transform: scale(1.02);
}

.grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.grid-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 40px;
    background: rgba(0, 0, 0, 0.3); /* Optional for readability */
    border-radius: 20px;
    text-align: center;
    padding: 10px;
}
