.elementor-39 .elementor-element.elementor-element-d1b8c7f{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--justify-content:center;--align-items:center;--background-transition:0.3s;--margin-block-start:0%;--margin-block-end:0%;--margin-inline-start:0%;--margin-inline-end:0%;--padding-block-start:0%;--padding-block-end:0%;--padding-inline-start:0%;--padding-inline-end:0%;}.elementor-39 .elementor-element.elementor-element-6cd3a27{--display:flex;--background-transition:0.3s;}.elementor-39 .elementor-element.elementor-element-73bca03{--display:flex;--background-transition:0.3s;}@media(max-width:767px){.elementor-39 .elementor-element.elementor-element-d1b8c7f{--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--justify-content:center;--gap:0px 0px;--margin-block-start:0%;--margin-block-end:0%;--margin-inline-start:0%;--margin-inline-end:0%;--padding-block-start:0%;--padding-block-end:0%;--padding-inline-start:0%;--padding-inline-end:0%;}.elementor-39 .elementor-element.elementor-element-6cd3a27{--width:65%;--justify-content:center;--align-items:flex-end;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--margin-block-start:0px;--margin-block-end:0px;--margin-inline-start:0px;--margin-inline-end:0px;--padding-block-start:0px;--padding-block-end:0px;--padding-inline-start:0px;--padding-inline-end:0px;}.elementor-39 .elementor-element.elementor-element-73bca03{--width:65%;--justify-content:center;--align-items:flex-end;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--margin-block-start:0px;--margin-block-end:0px;--margin-inline-start:0px;--margin-inline-end:0px;--padding-block-start:0px;--padding-block-end:0px;--padding-inline-start:0px;--padding-inline-end:0px;}}/* Start custom CSS for html, class: .elementor-element-a41cd2a *//* Stiluri generale */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
}

/* Butonul burger */
.menu-burger {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Animație pentru burger activ */
.menu-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-burger.open span:nth-child(2) {
    opacity: 0;
}

.menu-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Meniul */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.menu.open {
    right: 0;
}

.menu a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #0073e6;
}

/* Fundal semi-transparent când meniul e activ */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998;
}

.menu-backdrop.active {
    display: block;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-d1b8c7f */.section-menu-container {
    background-color: #f7f9fc; /* Fundal alb-albăstrui, liniștitor */
    padding: 15px 20px; /* Padding pentru spațiere uniformă */
    border-radius: 8px; /* Colțuri rotunjite pentru un aspect modern */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Umbră subtilă */
    width: calc(100% - 40px); /* Aproape full-width */
    max-width: 1200px; /* Limită maximă pentru ecrane mari */
    margin: 0 auto; /* Centrare pe pagină */
}/* End custom CSS */