.contact__wrapper h3{
    font-size: 42px;
    font-weight: 700;
    position: absolute;
    bottom: 150px;
    color: var(--bs-white);
    left: 0;
}
.form__wrapper .form{
    background-color: var(--bs-white);
}

.map__wrapper ul{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map__wrapper ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 17px;
}

.map__wrapper ul li p {
    margin: 0;
}

.map__wrapper ul li p span{
    font-weight: 700;
    font-size: 18px;
}


.goddess-list {
    list-style: none;
    font-size: 1rem;
    display: flex;
    justify-self: center;
    flex-direction: column;
}

.goddess-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #333;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.goddess-list li span {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.goddess-list li:hover {
    color: #d6336c; /* pinkish highlight */
    transform: translateX(8px);
}

.goddess-list li:hover span {
    transform: rotate(15deg) scale(1.2);
}
