/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Container for layout consistency */
.container {
    width: 90%;
    /*max-width: 100%; 1200px;*/
    margin: 0 auto;
}

/* Header Styling */
header {
    background-color: #4a9085;  /* Teal Green */
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    font-weight: 500;
}

/* Main Content Styling */
main {
    display: grid;
    justify-content: center;
    padding: 40px 0;
    background-color: #fff;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #4a9085; /* Teal Green */
    margin-bottom: 20px;
    margin-top: 20px;
}

ul {
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Info Section Layout */
.info {
    display: grid;
    /*grid-template-columns: 1fr 1fr 1fr;*/
    gap: 20px;
    justify-items: center;
}

.info-item {
    padding: 20px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.info-item h2 {
    font-size: 1.5em;
}

.info-item ul li {
    font-size: 1em;
}

.info-recht {
    font-size: .75em;
    padding: 20px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.info-recht h2 {
    font-size: 2em;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 30px 0;
    background-color: #f0f9f8;
    border-radius: 8px;
}

.contact a {
    color: #4a9085;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    color: #36775b;
}

/* Footer Styling */
footer {
    background-color: #4a9085;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Button Styles */
button {
    background-color: #4a9085; /* Teal Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #36775b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.4em;
    }
    
    ul li {
        font-size: 1em;
    }
    
    .container {
        width: 95%;
    }
}