.hero-container {
    max-width: 100%;
    position: relative;
    margin: 0;
    overflow: hidden;
    height: auto;
}

.hero-container .textpanel {
    background-color: rgba(28, 23, 21, 0.7);
    width: 60%;
    padding: 20px;
    border-top: 5px solid #FF6200;
    position: absolute;
    left: 20%;
    top : 100%;
    height: 45%;
    text-align: center;
    display: block;
}

.hero-container .textpanel .heading {
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
    color: white;
    text-align: center;
    margin: 0.8rem;
    height: 30%;

}
.hero-container .textpanel .description {
    font-size: 28px;
    line-height: 1.4;
    color: white;
    text-align: center;
    margin: 0.8rem;
    height: 30%;
}
.hero-container .textpanel .ctabtn {
    border: 1px solid #FF6200;
    background: transparent;
    color: white;
    font-size: 17px;
    line-height: 1.4;
    padding: 0.8rem;
    margin: 0.5rem;
    height: 30%;
}

/* Admin Edit Section Icons */
.section-edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: #FF6200;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.section-edit-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 98, 0, 0.4);
}

.section-edit-icon i {
    font-size: 16px;
}

/* Assicura che le section abbiano position relative */
section {
    position: relative;
}
