/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}*/

.main-header-menu {
    position: relative;
}

.circle-background {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: var( --e-global-color-7cd42bc );
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: -1;
    transition: none;
    will-change: transform, opacity, scale;
    pointer-events: none;
    transform-origin: center center;
    backface-visibility: hidden;
}

/*.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-link:hover {
    color: #667eea;
}

main {
    padding: 120px 20px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

main h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

main p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}*/

/* Responsive Design */
/*@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        height: auto;
        padding: 20px 0;
    }

    .nav-item {
        margin: 5px 10px;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 14px;
    }

    .circle-background {
        width: 50px;
        height: 50px;
    }

    main {
        padding-top: 140px;
    }

    main h1 {
        font-size: 2rem;
    }
}*/
