/* Reset und Grundstil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #a31c2c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: inherit;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 72px;
}

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

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    margin-right: 20px;
}

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

.nav a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav a:hover, .nav a.active {
    color: #a31c2c;
    text-decoration: none;
}

.button {
    background-color: #a31c2c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #8a1623;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background-color: #a31c2c;
    color: #fff;
    padding: 60px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    max-width: 800px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info a {
    color: #fff;
}

.opening-hours h3 {
    margin-bottom: 15px;
}

.opening-hours table {
    border-collapse: collapse;
}

.opening-hours td {
    padding: 5px 0;
    padding-right: 20px;
}

/* Feature Highlights */
.highlight-features {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.feature {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    color: #a31c2c;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature p {
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #fff;
}

.about .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content p {
    margin-bottom: 20px;
}

.praxis-image {
    flex: 1;
    min-width: 300px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #a31c2c;
    color: #fff;
}

.services h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.services-intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.services-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.services-column {
    flex: 1;
    min-width: 240px;
}

.services a {
    color: #fff;
}

.services strong {
    color: #fff;
}

.services-column ul li {
    margin-bottom: 12px;
}

.treatment-areas {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
}

.treatment-areas h3 {
    margin-bottom: 15px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.areas-list li {
    flex: 1 0 40%;
    min-width: 240px;
}

/* Facilities Section */
.facilities {
    padding: 60px 0;
    background-color: #fff;
}

.facilities h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #a31c2c;
}

.facilities-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.facilities-list {
    flex: 2;
    min-width: 300px;
}

.facilities ul {
    margin-bottom: 15px;
}

.facilities li {
    margin-bottom: 15px;
}

.facilities li ul {
    margin-top: 10px;
}

.facilities li ul li {
    margin-bottom: 8px;
}

.insurance-info {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
}

.insurance-info h3 {
    color: #a31c2c;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 40px 0 20px;
    border-top: 1px solid #e1e1e1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info, .footer-hours {
    flex: 1;
    min-width: 300px;
}

.footer-info p {
    margin-bottom: 15px;
}

.footer-hours h3 {
    margin-bottom: 15px;
    color: #a31c2c;
}

.footer-hours table {
    border-collapse: collapse;
}

.footer-hours td {
    padding: 5px 0;
    padding-right: 20px;
}

.copyright {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
    font-size: 0.9rem;
}

.copyright p {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .features-grid {
        flex-direction: column;
    }

    .feature {
        min-width: 100%;
    }

    .about .container {
        flex-direction: column;
    }

    .about-content, .praxis-image {
        flex: 100%;
    }

    .services-columns {
        flex-direction: column;
    }

    .areas-list li {
        flex: 1 0 100%;
    }

    .facilities-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}
