/* Passen Sie die Breite des Seitenmenüs an */
.md-sidebar {
    width: 25%; /* Hier können Sie die gewünschte Breite anpassen */
}

.md-sidebar--secondary {
    width: 20%; /* Hier können Sie die gewünschte Breite für das sekundäre Menü anpassen */
}

/* Passen Sie die Breite des Inhaltsbereichs entsprechend an */
.md-main {
    margin-left: 0px; /* Stellen Sie sicher, dass dies der Breite des Seitenmenüs entspricht */
}

:root {
    --md-header-color: #678d00; /* Header Farbe für Standard Schema */
}

.md-tabs {
    background-color: #678d00;
}

.md-header__button.md-logo img {
    border-radius: 0 !important;
    box-shadow: none !important;
  }

.md-header {
    background-color: var(--md-header-color);
}

.cta-buttons {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white !important;
    background-color: #96C11F;
    text-decoration: none;
    border-radius: 40px;
    transition: background 0.3s;
    text-align: center;
}

.cta-button:hover {
    background-color: #AFD545;
}

section {
    padding-top: 3rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 4rem; /* oder 64px, je nach Design */
    border-radius: 1rem;
    background-color: #f2f2f2;
}

section h1 {
    text-align: center;
    font-size: 2.5rem;
}

section h2 {
    font-size: 28px;
    color: #555;
}

section p {
    font-size: 20px;
    color: #555;
}

section img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hier kannst du die Schattenparameter anpassen */
    border-radius: 0.2rem;
}

section a {
    display: block;
    margin-top: 10px;
    color: #96C11F;
    text-decoration: none;
}

/* Hero-Bereich */
.hero-title {
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.hero-title h1 {
    font-size: 2rem;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.hero-title {
    text-align: center;
}

.hero-title img {
    height: 300px;
    box-shadow: none !important;
}

/* Feature-Sektion */
.features {
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: auto;    
}

.feature {
    background: white;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.5s ease-in-out;
}

.feature:hover {
    transform: scale(1.1); /* 10% größer */
}

.feature a:hover {
    text-decoration: underline;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease-in-out;
}

.hero-image img:hover {
    transform: scale(1.1); /* 10% größer */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr; /* 70% für Text, 30% für Bild */
    align-items: center;
    width: 100%;
    gap: 40px;
}

/* Service Desk Sektion */
.service-desk {
    text-align: center;
}

/* Plattformen Sektion */
.platforms {
    padding-bottom: 50px;
}

.platform-grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.platform-logos {
    border-radius: 3px;
    margin-left: 10px;
    padding-left: 20px;
}

.platform-logos a {
    transition: transform 0.5s ease-in-out;
}

.platform-logos a:hover {
    transform: scale(1.1); /* 10% größer */
}

.platform-text {
    vertical-align: text-top;
}

.platform-logos h3{
    text-align: center;
}
.platform-logos p{
    text-align: left;
}

/* AVM Sektion */
.avm-grid {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.avm-logos img{
    box-shadow: none !important;
    transition: transform 0.5s ease-in-out;
}

.avm-logos img:hover {
    transform: scale(1.1); /* 10% größer */
}

.ci-cd {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ci-cd-grid {
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.ci-cd img{
    box-shadow: none !important;
    transition: transform 0.5s ease-in-out;
}

.service-ui-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: auto;    
}

.service-ui-image {
    flex: 1;
    display: flex;
    justify-content: right;
}

.service-ui-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease-in-out;
}

.service-ui-image img:hover {
    transform: scale(1.1); /* 10% größer */
}