
        /* ===== ŠONINIS MENIU ===== */
        .sidebar {
     position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #152b3a;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
        }

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

        @media (min-width: 769px) {
            .sidebar { 
                transform: translateX(0); 
                width: 270px; 
            }
        }
        .sidebar-logo {
            font-size: 24px;
            font-weight: 700;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            line-height: 1.2;
        }

        .sidebar-logo span {
            font-size: 14px;
            display: block;
             color: #e9b741;
            font-weight: 400;
            margin-top: 5px;
        }

        .sidebar-menu { 
          list-style: none;
    flex: 1;
    margin-top: 20px;
    overflow-y: auto;
        }
   
        .sidebar-menu a {
            display: block;
            padding: 10px;
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }

        .sidebar-menu a:hover { 
           background: #e9b7414a;
    border-left: 4px solid #e9b741;
    color: white;
        }
        
        /* Dropdown stiliai */
        .dropdown {
            position: relative;
        }

        .dropdown > a::after {
         content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    color: #e9b741;
    transition: transform 0.3s;
        }

        .dropdown.active > a::after { 
            transform: rotate(180deg); 
        }

        .submenu {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            background-color: rgba(0,0,0,0.2);
        }

        .submenu.active {
            max-height: 400px;
        }

        .submenu a { 
            padding: 12px 20px 12px 40px; 
            font-size: 14px; 
        }

        .submenu a:hover {
            background: rgba(255, 154, 60, 0.15);
        }

        /* Kontaktai šoniniame meniu */
        .sidebar-contact {
            padding: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: auto;
        }

        .sidebar-contact a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 8px 0;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .sidebar-contact a i {
            width: 20px;
            color: #ff9a3c;
            margin-right: 8px;
        }

        .sidebar-contact a:hover {
            opacity: 1;
            color: #ff9a3c;
        }

        /* ===== VIRŠUTINIS MENIU ===== */
        .topbar {
          position: fixed;
    top: 0;
    right: 0;
    right: 0;
    /* background: white; */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s;
        }

        @media (min-width: 769px) { 
            .topbar { 
                left: 270px; 
            } 
        }

        .topbar.hidden { 
            transform: translateY(-100%); 
        }

        .topbar-logo {
            font-size: 20px;
            font-weight: 700;
            color: #1a2f3f;
            line-height: 1.2;
        }

        .topbar-logo span {
            font-size: 12px;
            color: #ff9a3c;
            display: block;
        }

        .menu-toggle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2001; 
            color: #1a2f3f;
            font-size: 1.2rem;
        }

        @media (min-width: 769px) { 
            .menu-toggle { 
                display: none; 
            } 
        }

        /* ===== UŽDENKIMAS ===== */
        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
        }

        .overlay.active { 
            opacity: 1; 
            visibility: visible; 
        }

        /* ===== PAGRINDINIS TURINYS ===== */
        .app {
            width: 100%;
            min-height: 100vh;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .app.menu-open { 
            transform: translateX(280px); 
        }
        .sidebar-menu > li > a i {
    color: #e9b741;
    width: 18px;
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.sidebar-menu > li > a i {
    color: #e9b741;
    width: 18px;
    margin-right: 10px;
}
        @media (min-width: 769px) {
            .app { 
                transform: none !important; 
            }
            .app.menu-open { 
                transform: none; 
            }
            .content_main { 
                margin-left: 270px; 

            }
        }




                @media (min-width: 769px) {
            .app { 
                transform: none !important; 
            }
            .app.menu-open { 
                transform: none; 
            }
            .content_main { 
                margin-left: 270px; 

            }
        }

     




        .content {
            /* min-height: 100vh; */
    /* padding: 100px 20px 20px; */
    align-items: center;
    /* justify-content: center; */
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            max-width: 600px;
            text-align: center;
        }

        .card h1 {
            color: #1a2f3f;
            margin-bottom: 15px;
        }

        .card p {
            color: #546e82;
            margin-bottom: 10px;
        }

        .card .phone {
            color: #ff9a3c;
            font-size: 1.2rem;
            margin-top: 20px;
        }

        .card .phone i {
            margin-right: 8px;
        }