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

        body {
            font-family: 'Inter', system-ui, sans-serif;
            color: #334155;
            line-height: 1.6;
            transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hamburger-btn {
         right: 15px;
    position: fixed;
    top: 20px;
    z-index: 1001;
    background: #2ecc71;
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid #ffffff17;
    cursor: pointer;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
        }

        .hamburger-btn span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body.sidebar-open .hamburger-btn span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        body.sidebar-open .hamburger-btn span:nth-child(2) {
            opacity: 0;
        }

        body.sidebar-open .hamburger-btn span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .sidebar {
      position: fixed;  
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: #1a243c;
        transform: translateX(-100%);
        z-index: 1100;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sidebar.open {
            transform: translateX(0);
        }

        .sidebar-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

   

        .logooo img {
        width: 100%;
        margin-bottom: -5px;
        height: 259px;
        border-bottom: 1px solid #ffffff66;
        }

        .sidebar-icons {
            padding-top: 20px;
         display: flex;
    flex-direction: column;
    flex: 1;
    overflow: auto;
        }

        .sidebar_a {
       padding-left: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: auto;
    color: #d6d6d6;
    transition: color 0.2s ease, background 0.2s ease;
        }


        .sidebar_a.active {
            color: white;
            background: rgba(255,255,255,0.05);
        }

        .sidebar_a svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            stroke-width: 1.8;
            fill: none;
            margin-right: 20px;
            margin-left: 10px;
            padding: 2px;
            border-radius: 500px;
        }

        .sidebar-footer {
        margin-top: auto;
        padding: 5px;
        border-top: 1px solid #334155;
        color: #94a3b8;
        font-size: 12px;
        text-align: center;
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            pointer-events: none;
            z-index: 1000;
            backdrop-filter: blur(2px);
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        main {
            min-height: 100vh;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

     

        .phone-btn {
            background: #3b82f6;
            color: white;
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            font-size: 1.1rem;
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        }

   



        @media (min-width: 1024px) {
            .hamburger-btn {
                display: none;
            }
            .sidebar {
                transform: translateX(0);
            }
            body {
                margin-left: 250px;
            }
            .overlay {
                display: none;
            }
        }

        @media (max-width: 1023px) {
            body.sidebar-open {
                overflow: hidden;
            }
      
            body.sidebar-open main {
                transform: translateX(125px);
                opacity: 0.7;
                pointer-events: none;
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hamburger-btn {
                right: 15px;
                top: 15px;
                width: 45px;
                height: 45px;
            }
       
        }

        @media (max-width: 480px) {
            .sidebar {
                width: 220px;
            }
        
            .hamburger-btn span {
                width: 22px;
            }
        }
























        #straipsniaiLink {
            display: flex;
            align-items: center;
            width: 100%;
            cursor: pointer;
            user-select: none;
            justify-content: flex-start;
        }

        #straipsniaiLink span {
            flex: 1;
            text-align: left;
        }

        .dropdown-arrow {
            margin-left: 10px;
            transition: transform 0.3s ease;
            width: 18px;
            height: 18px;
            color: #2ecc71;
        }

        #straipsniaiLink.open .dropdown-arrow {
            transform: rotate(180deg);
        }

        #straipsniaiLink.open {
            background: rgba(46, 204, 113, 0.1);
            color: #ffffff;
        }

        /* IŠSKLEIDŽIAMAS TURINYS */
        .dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            background: rgba(0, 0, 0, 0.2);
        }

        .dropdown-content.open {
           max-height: 200px;
    border-bottom: 1px solid #ffffff70;
        }

        .dropdown-link {
           display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-weight: 400;
    /* border-bottom: 1px solid #2ecc71; */
        }

        .dropdown-link:hover {
            background: rgba(46, 204, 113, 0.15);
            color: #ffffff;
            border-left-color: #2ecc71;
        }

        .dropdown-link span {
            color: #2ecc71;
            font-size: 16px;
            font-weight: bold;
        }

        .dropdown-link.active {
            color: white;
            background: rgba(46, 204, 113, 0.2);
            border-left-color: #2ecc71;
        }

      
  

        @media (max-width: 768px) {
            .sidebar {
                width: 260px;
            }
            .logooo img {
    width: 100%;
    margin-bottom: -5px;
    height: 200px;
    border-bottom: 1px solid #ffffff66;
    object-fit: cover;
}
            .hamburger-btn {
                right: 15px;
                top: 15px;
                width: 45px;
                height: 45px;
            }
            
            body.sidebar-open main {
                transform: translateX(130px);
            }
            
            .dropdown-link {
                font-size: 13px;
            }
        }

  