 * {
            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 {
            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;
        }

        @media (max-width: 768px) {

            .content-wrapper {
                flex-direction: column;
                height: auto;
                margin-left: 0 !important;
            }


            .right-panel {
                width: 100%;
                border-left: none;
                border-top: 2px solid #cdd5e0;
                display: block;
            }

            .sidebar {
                width: 250px;
                height: calc(100vh - 56px);
                position: fixed;
                top: 56px;
                left: 0;
                transform: translateX(-100%);
                z-index: 1000;
                transition: transform 0.3s ease;
            }

            .sidebar.show {
                transform: translateX(0);
            }
        }
      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;
}
.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;
}
.main-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.main-content h1 {
    font-size: 1.9rem;
    color: #004aad;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.main-content h2 {
    font-size: 1.3rem;
    color: #d93025;
    margin: 1.5rem 0 0.8rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.3rem;
}

.main-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #222;
    margin: 0.6rem 0 1rem;
    text-align: justify;
}

.main-content ul {
    margin: 0.8rem 0 1.2rem 1.5rem;
}

.main-content ul li {
    margin-bottom: 0.4rem;
}

.main-content hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #ddd;
}