:root {
    --text: #ffffff;
    --background: #1f2663;
    --accent: #e76f0d;
}

#hero {
    margin-bottom: 150px;
}

#hero__title {
    font-size: clamp(1.5rem, 10vw, 40px);
    font-weight: 600;
    margin-bottom: 30px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 50px;
}

#hero__content {
    display: flex;
    align-items: stretch;
    gap: 100px;
}

#hero__price {
    flex: 0.8;
}

#hero__hours {
    flex: 0.2;
}

#hero__hours ol {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hero__hours h3 {
    color: var(--accent);
    font-weight: 600;
}

#hero__price,
#hero__hours {
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 30px;
    padding: 2.5rem;
}

#questions {
    margin-bottom: 150px;
}

#questions__title {
    font-size: 25px;
    font-weight: 600;
}

#questions div {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#questions hr {
    color: #ffffff;
    width: 100%;
}

#questions summary {
    font-weight: 600;
}
#questions summary:hover {
    cursor: pointer;
}

#protection {
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    margin-bottom: 150px;
}

#protection__title {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--accent);
}

#map {
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    text-align: center;
}

#map h3 {
    font-weight: 600;
    color: var(--accent);
}

#map__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#map div div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

details[open] summary {
    color: var(--accent);
}

@media screen and (max-width: 768px) {
    .material-symbols-outlined {
        max-width: 100vw !important;
        overflow: hidden !important;
    }
    #hero {
        margin-bottom: 70px;
    }
    #hero__content {
        gap: 30px;
        flex-direction: column;
    }
    #map {
        flex-direction: column;
    }
    #map iframe {
        width: 90%;
    }
}
