body {
    font-family: Outfit, sans-serif;
    margin: 0;
    background: white;
    color: #333;
    overflow-y: scroll; /* Make the body scrollable */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}

/* Hide scrollbar in Webkit browsers but keep custom styling */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #f4f4f4;
}

body::-webkit-scrollbar-thumb {
    background-color: #042344;
    border-radius: 10px;
    border: 3px solid #f4f4f4;
}

/* Custom scrollbar styling for Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: #042344 #f4f4f4;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.full-width-background {
    background: #34495E;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0; /* Optional: fügt vertikale Polsterung hinzu */
}

.full-width-background-white {
    background: #042344;
    width: 100%;
}

.hero {
    color: white;
    padding: 50px 20px;
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Zentriert den Text */
}

.hero-content {
    max-width: 100%;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.hero ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.hero ul li {
    font-size: 1.1em;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    position: relative;
    padding-left: 30px; /* Platz für das Häkchen */
}

.hero ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #f9a825; /* Hintergrundfarbe des Häkchens */
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" stroke="white" stroke-width="3" d="M20.285 2.285a1 1 0 0 0-1.41 0L9 12.167 5.124 8.29a1 1 0 0 0-1.414 1.415l4.586 4.585a1 1 0 0 0 1.414 0L20.285 3.7a1 1 0 0 0 0-1.415z"/></svg>') center / contain no-repeat;
}

.hero .cta {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1em;
    color: #042344;
    background-color: #f9a825;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.hero .cta:hover {
    background-color: #ddd;
    color: #000;
}

.hero img {
    max-width: 45%;
    border-radius: 10px;
}

.full-width-background-w {
    background: white;
    width: 100%;
}

.hero-w {
    color: black;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-w {
    max-width: 50%;
}

.hero-w h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-w p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.hero-w ul {
    list-style: none;
    padding: 0;
}

.hero-w ul li {
    font-size: 1.1em;
    margin: 10px 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px; /* Platz für das Häkchen */
}

.hero-w ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #f9a825; /* Hintergrundfarbe des Häkchens */
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" stroke="white" stroke-width="3" d="M20.285 2.285a1 1 0 0 0-1.41 0L9 12.167 5.124 8.29a1 1 0 0 0-1.414 1.415l4.586 4.585a1 1 0 0 0 1.414 0L20.285 3.7a1 1 0 0 0 0-1.415z"/></svg>') center / contain no-repeat;
}

.hero-w .cta {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1em;
    color: #042344;
    background-color: #f9a825;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.hero-w .cta:hover {
    background-color: #ddd;
    color: #000;
}

.hero-w img {
    max-width: 45%;
    border-radius: 10px;
}

.trusted-by {
    text-align: center;
    padding: 20px 0;
    background-color: #042344;
    color: white;
}

.trusted-by img {
    margin: 0 10px;
}

.applications {
    text-align: center;
    padding: 40px 20px;
}

.applications h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.applications .tiles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tile {
    background-color: white;
    color: #042344;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    width: 30%;
    max-width: 300px;
    text-align: left;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.tile h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.tile p {
    font-size: 1em;
    margin-bottom: 20px;
}

.tile span {
    font-size: 1em;
    color: #f9a825;
    text-decoration: none;
}

.tile span:hover {
    text-decoration: underline;
}

.fw400 {
    font-weight: 400;
}

/* Navbar Styling */
.navbar {
    width: 100%;
    max-width: 1200px;
    color: #042344;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 auto;
 /*    padding: 15px 30px;*/
}

.navbar .logo {
    font-size: 1.5em;
    color: #042344;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #042344;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 0 5px;
}

.navbar .nav-links a:hover, .navbar .nav-links a.active {
    background-color: #ddd;
    color: #042344;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #042344;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.footer-navbar {
    background-color: black;
    padding: 20px 0;
    text-align: center;
	 color: #042344;
}

.footer-navbar .nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;

}

.footer-navbar .nav-links a {
    padding: 10px 15px;
    color: gray;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.footer-navbar .nav-links a:hover {
    background-color: #ddd;
    color: #042344;
}

/* Media Queries */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 20px;
    }
    .hero {
        flex-direction: column;
        text-align: left; /* Anpassung: Text linksbündig ausrichten */
    }
    .hero img {
        order: -1; /* Bild zuerst anzeigen */
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: left; /* Anpassung: Text linksbündig ausrichten */
    }
    .tile {
        width: 100%; /* Anpassung: volle Breite nutzen */
        text-align: left; /* Anpassung: Text linksbündig ausrichten */
    }
    .hero-w {
        flex-direction: column;
        text-align: left; /* Anpassung: Text linksbündig ausrichten */
    }
    .hero-w img {
        order: -1; /* Bild zuerst anzeigen */
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-content-w {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: left; /* Anpassung: Text linksbündig ausrichten */
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .navbar .nav-links a {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        margin: 0;
    }

    .navbar .nav-links a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

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

    .footer-navbar .nav-links {
        flex-direction: column;
    }

    .footer-navbar .nav-links a {
        margin: 5px 0;
    }
}
