body{
    background-color: rgb(255, 255, 255);
}
.hide {
    text-align: center;
    background: #fff;
    border-radius: 25px;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.1),
        0 6px 6px rgba(0,0,0,0.1),
        0 0 100px rgba(4, 255, 0, 0.1);
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.3s ease;
}

.hide h2 {
    color: #08260a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.hide p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1rem 0;
}
.hide:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.15),
        0 10px 10px rgba(0,0,0,0.12),
        0 0 120px rgba(4, 255, 0, 0.15);
}
.descriere{
    text-align: center;
}
.descriere h1{
    padding-bottom: 1rem;
    border-bottom: 5px solid #000000;
    width: 60%;
    margin: auto;

}


@media (max-width: 1200px) {

    circle.loc {
      r: 15; /* Increase circle radius on small screens */
    }
    img{
        width: 15%;
    }
    .svg-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin:0 auto;
        padding-top: 10%;
    }
    svg {
        max-width: 90%;
        height: auto;
    }
    .hide{
        text-align: center;
        position: absolute;
        margin: 0 auto;
        width: 50%;
        height: 30%;
        padding: 1rem;
        left: 25%;
    }
}
@media (min-width: 1200px) {
    .svg-container{
        display: grid;
        width: 50%
    }
    .hide{
        position: absolute;
        margin-left: 55%;
        width: 40%;
        height: 50%;
    }
    img{
        width: 30%
    }
}
