.google-maps {
    min-height: 450px;
    width: 100%;
    position: relative;
}

.google-maps__map {
    display: none;
}

.google-maps__bg-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    filter: blur(3px);
    opacity: 0.6;
}

.google-maps__consent {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 45%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    color: #000;
    text-align: center;
}

.google-maps__consent-headline h3 {
    margin-top: 0;
}

.google-maps__consent-text {
    margin-bottom: 15px;
}

.google-maps__consent-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.google-maps__consent-disagree,
.google-maps__consent-agree {
    background-color: rgba(51, 51, 51, 0.9);
    border-radius: 5px;
    padding: 11px 50px;
    display: inline-block;
    color: #fff;
    line-height: normal;
    cursor: pointer;
    margin-top: 0;
}

.google-maps__consent-disagree:hover,
.google-maps__consent-agree:hover {
    background-color: rgba(30, 30, 30, 0.9);
}

@media (max-width: 768px) {
    .google-maps__consent {
        width: 95%;
    }
}

@media (max-width: 320px) {
    .google-maps__consent {
        width: 100%;
    }
}
