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

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 56px;
     background-color: #d1e4ff;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 1rem;
     box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
     z-index: 1200;
 }


 #menu-toggle {
     background-color: transparent;
     border: none;
     color: #004aad;
     font-size: 2rem;
     cursor: pointer;
     padding: 0.2rem 0.5rem;
     border-radius: 6px;
     transition: background-color 0.2s;
 }

 #menu-toggle:hover {
     background-color: #a8c3ff;
 }

 .header-text {
     color: #004aad;
     font-weight: 600;
     font-size: 1.2rem;
     margin-left: auto;
     padding: 0 1rem;
 }

 .sidebar {
     width: 250px;
     background-color: #004aad;
     color: white;
     display: flex;
     flex-direction: column;
     padding: 1rem;
     transition: transform 0.3s ease;
     position: fixed;
     top: 56px;
     left: 0;
     height: calc(100vh - 56px);
     transform: translateX(-100%);
     z-index: 1000;
 }


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


 .sidebar-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1rem;
 }

 .sidebar-header h2 {
     font-size: 1.5rem;
 }

 #close-btn {
     background: transparent;
     border: none;
     color: white;
     font-size: 2rem;
     cursor: pointer;
     padding: 0;
     line-height: 1;
 }

 .sidebar a {
     color: white;
     text-decoration: none;
     margin: 0.27rem 0;
     font-size: 1.02rem;
     display: block;
     transition: background 0.2s;
     padding: 0.3rem 0.6rem;
     border-radius: 6px;
 }

 .sidebar a:hover {
     background-color: #0066cc;
 }


 .content-wrapper {
     flex: 1;
     display: flex;
     flex-direction: row;
     height: 100vh;
     margin-left: 0;
     transition: margin-left 0.3s ease;
     padding-top: 56px;
 }


 .content-wrapper.shifted {
     margin-left: 250px;
 }


 .main {
     flex: 2;
     padding: 2rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     overflow-y: auto;
     width: 100%;
 }

 .main h1 {
     color: #004aad;
     margin-bottom: 1rem;
 }

 .main p {
     font-size: 1.1rem;
     color: #333;
     margin-bottom: 2rem;
 }

 .start-button {
     background-color: #007bff;
     color: white;
     padding: 1rem 2rem;
     border: none;
     border-radius: 8px;
     font-size: 1.1rem;
     cursor: pointer;
     transition: background-color 0.3s;
     text-decoration: none;
 }

 .start-button:hover {
     background-color: #0056b3;
 }

 .right-panel {
     margin-top: -45px;
     width: 350px;
     padding: 2rem 1.5rem;
     background-color: #e9effa;
     border-left: 2px solid #cdd5e0;
     overflow-y: auto;
 }


 .branding {
     background-color: #ffffff;
     border: 2px solid #004aad;
     padding: 1.5rem;
     border-radius: 12px;
     margin-bottom: 2rem;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     text-align: center;
 }

 .branding h3 {
     color: #004aad;
     font-size: 1.4rem;
     margin-bottom: 0.5rem;
 }

 .branding p {
     color: #222;
     font-size: 1rem;
 }

 .testimoniale h4 {
     color: #004aad;
     margin-bottom: 1rem;
     font-size: 1.2rem;
 }

 .comentariu {
     background-color: white;
     padding: 1rem;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     margin-bottom: 1rem;
 }

 .comentariu small {
     display: block;
     margin-top: 0.5rem;
     color: #666;
 }

 footer {
     background-color: #d1e4ff;
     color: #004aad;
     font-size: 1rem;
     text-align: center;
     padding: 1rem 1.5rem;
     box-shadow: 0 -2px 4px rgb(0 0 0 / 0.1);
     font-weight: 600;
     line-height: 1.3;
     margin-top: auto;
 }


 body,
 html {
     height: 100%;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     font-family: 'Poppins', sans-serif;
     background-color: #f5f7fa;
 }

 .content-wrapper {
     flex: 1 0 auto;
     padding-top: 56px;
     position: relative;
 }

 .header-text .step-number {
     color: #d93025;
     font-weight: 700;
     font-size: 1.3rem;
     margin-right: 0.25rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
 }

 .sidebar a.sustine-proiect {
     background-color: #374151;
     color: #f9fafb;
     font-weight: 600;
     text-align: center;
     padding: 0.6rem 0.8rem;
     margin-top: 0.2rem;
     border-radius: 8px;
     font-size: 1.05rem;
     transition: background-color 0.3s, transform 0.2s;
 }

 .sidebar a.sustine-proiect:hover {
     background-color: #1f2937;
     transform: scale(1.05);
 }

 .sidebar a i {
     margin-left: 0.5rem;
 }

 .side-socials {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 12px;
     margin-top: -630px;
     margin-right: 10px;

 }

 .side-socials .icon {
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     color: white;
     font-size: 18px;
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     text-decoration: none;
 }


 .icon.insta {
     background: radial-gradient(circle at 30% 30%, #f9ce34, #ee2a7b, #6228d7);
 }

 .icon.fb {
     background: #1877f2;
 }

 .icon.wa {
     background: #25d366;
 }

 .icon.tw {
     background: #1da1f2;
 }


 .side-socials .icon:hover {
     transform: scale(1.2);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
 }

 .right-panel .branding img {
     width: 100%;
     max-width: 180px;
     margin: 15px auto;
     display: block;
     border-radius: 25px;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
     border: none;
     transition: transform 0.3s ease;
 }

 .right-panel .branding img:hover {
     transform: scale(1.05);
 }

 @media (max-width: 575.98px) {

     .header-text {
         font-size: 0.7rem;
         overflow: hidden;
         text-overflow: ellipsis;
     }

     .right-panel {
         position: fixed;
         top: 35px;
         right: 0;
         width: 100%;
         height: calc(100vh - 56px);
         background-color: #e9effa;
         border-left: none;
         border-top: 2px solid #cdd5e0;
         transform: translateX(100%);
         transition: transform 0.3s ease;
         z-index: 1200;
         overflow-y: auto;
         padding: 1rem;
     }

     .right-panel.show {
         transform: translateY(0);
     }


     .side-socials {
         display: flex !important;
         position: fixed;
         top: auto;
         bottom: 0.5rem;
         left: 0.5rem;
         background-color: rgba(255, 255, 255, 0.95);
         border-radius: 8px;
         padding: 0.3rem;
         gap: 6px;
         transition: opacity 0.4s ease, transform 0.3s ease;
     }

     .side-socials .icon {
         width: 28px;
         height: 28px;
         font-size: 14px;
         transition: transform 0.2s, opacity 0.3s ease;
     }

     .side-socials .icon:hover {
         transform: scale(1.2);
     }

     .side-socials.hidden {
         opacity: 0;
         transform: translateY(10px);
         pointer-events: none;
     }

     .main {
         text-align: center;
         padding: 2rem 1rem;
     }

     .main h1 {
         font-size: 1.6rem;
         margin-bottom: 1rem;
         color: #004aad;
     }

     .main p {
         font-size: 1rem;
         margin-bottom: 2rem;
         color: #333;
     }

     .start-button {
         background-color: #007bff;
         color: #fff;
         border: none;
         border-radius: 8px;
         padding: 0.9rem 1.2rem;
         font-size: 1rem;
         font-weight: 600;
         cursor: pointer;
         text-decoration: none;
         display: inline-block;
         transition: background-color 0.3s;
     }

     .start-button:hover {
         background-color: #0056b3;
     }


     #right-panel-toggle {
         position: fixed;
         bottom: 1rem;
         right: 1rem;
         background-color: #004aad;
         color: white;
         border: none;
         border-radius: 50%;
         width: 50px;
         height: 50px;
         font-size: 1.5rem;
         display: flex;
         align-items: center;
         justify-content: center;
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
         z-index: 1300;
         cursor: pointer;
     }

     #right-panel-toggle:hover {
         background-color: #0066cc;
     }

     .sidebar a {
         color: white;
         text-decoration: none;
         margin: 0.27rem 0;
         font-size: 1rem;
         display: block;
         transition: background 0.2s;
         padding: 0.15rem 0.6rem;
         border-radius: 6px;
     }
 }

 @media screen and (max-width: 320px) and (max-height: 568px) {
     .sidebar a {
         color: white;
         text-decoration: none;
         margin: 0.27rem 0;
         font-size: 0.7rem;
         display: block;
         transition: background 0.2s;
         padding: 0.1rem 0.6rem;
         border-radius: 6px;
     }

     .header-text {
         font-size: 0.5rem;
         overflow: hidden;
         text-overflow: ellipsis;
     }
 }