/* Kontakt Page Styles */
.kontakt-container {
    padding: 40px 0px 100px 0px;
    max-width: 80%;
    margin: 0 auto;
}

.kontakt-container h1 {
text-align: center;
margin-bottom: 40px;
font-size: 2.5em;
background-color: var(--SRLB-green-org);
padding: 40px 0;
background: url('../images/Ticket_green.svg') no-repeat center/cover;
color: var(--background-srlb-yellow);
}

.kontakt-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.kontakt-section {
    padding: 30px;
    background-color: var(--background-color-light);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.kontakt-section h2 {
    color: var(--SRLB-green2);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.kontakt-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.kontakt-email {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--background-srlb-trumpet-yellow);
    border-radius: 8px;
    border: none;
}

.kontakt-email a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    word-break: break-all;
    transition: color 0.2s;
    display: inline-block;
}

.kontakt-email a:hover {
    text-decoration: underline;
    color: var(--SRLB-green2);
}

/* Mail Icon Styling */
.kontakt-email #maillogo::before {
    display: inline-block;
    height: 24px;
    width: auto;
    vertical-align: baseline;
    margin-right: 8px;
    margin-bottom: 2px;
    object-fit: contain;
}

.kontakt-email #maillogo:hover::before {
    filter: brightness(0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .kontakt-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kontakt-container h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .kontakt-section {
        padding: 20px;
    }
}
