html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.full-image-container {
    width: 100%;
    height: calc(100vh - 100px); /* Resta la altura aproximada del header */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111; /* Fondo oscuro para resaltar la imagen */
}

.full-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Muestra la imagen completa sin recortar */
    display: block;
}

.back-button-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.back-button {
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.back-button:hover {
    background: rgba(0,0,0,0.9);
}

/* Si prefieres que la imagen rellene toda la pantalla (recortando bordes), cambia object-fit: contain por object-fit: cover */