       /* Set background image for the entire page */
body {
    background-image: url('https://www.cegatesc.com/images/2eb8685c-cc59-4bf5-b256-fcf5e0380229.jpg');
    background-size: cover; /* Cover the entire viewport */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Fix the image in place during scroll */
    background-repeat: no-repeat; /* Prevent repeating the image */
}

/* Optional: Apply a semi-transparent overlay for better text readability */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: -1; /* Place it behind the content */
} 

       body {
            font-family: 'Montserrat';
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f5f5f5;
        }

        .content-wrapper {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }

        .text-content {
            max-width: 500px;
            margin-right: 20px;
        }

        .text-content p {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
        }

        .icon-content {
            font-size: 72px;
            color: #007bff;
        }
	 body {
        margin: 0;
    }

    header {
        background-color: #007bff;
        padding: 10px 25px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        color: white;
        font-size: 24px;
        text-decoration: none;
    }

    .nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }

    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #f5f5f5;
        text-decoration: underline; /* Sublinierea textului la hover */
    }

    .menu-toggle {
        display: none;
        cursor: pointer;
        font-size: 24px;
        color: white;
    }

    /* Responsivitate */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 60px;
            right: 20px;
            background-color: #007bff;
            width: 200px;
            border-radius: 5px;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 10px 0;
        }

        .menu-toggle {
            display: block;
        }
    }

