:root {
    --primary: #23e135;
    --secondary: #333333;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --accent: #0b9518;
    --danger: #e74c3c;
    --gray: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--light);
}

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

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

/* Header Styles */
header {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

.logo-icon {
    background-color: var(--primary);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    box-shadow: var(--shadow);
    font-size: 1.5rem;
}

.logo-img {
    height: 50px;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
}

.logo h1 span {
    color: var(--primary);
}

.tagline {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: white;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    margin-bottom: 60px;
}

.services h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark);
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: var(--primary);
    color: var(--dark);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    margin-bottom: 60px;
}

.contact h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark);
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 400px;
}

.contact-info div p {
    margin: 0;
    line-height: 1.4;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 280px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.personal-section, .availability {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.availability {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.availability h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark);
}

.availability p {
    margin-bottom: 10px;
}

.emergency {
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--light);
    border-radius: 6px;
    border-left: 4px solid var(--danger);
}

.emergency i {
    color: var(--danger);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark);
    color: white;
    border-radius: 50%;
    margin: 0 8px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 350px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}

/* Personal Section Styles */
.personal-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.personal-photo {
    margin-bottom: 20px;
}

.personal-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.personal-photo h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark);
}

.personal-photo p {
    color: var(--gray);
    margin-bottom: 15px;
}

.personal-quote {
    position: relative;
    padding: 0 15px;
}

.personal-quote p {
    font-style: italic;
    color: var(--secondary);
    line-height: 1.5;
    position: relative;
}

.personal-quote p::before,
.personal-quote p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

/* Availability Styles */
.availability {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.availability h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark);
}

.availability p {
    margin-bottom: 10px;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none; /* Will be shown via JavaScript */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--primary);
    color: var(--dark);
}

.cookie-btn.decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray);
    margin: 0 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* Legal Section (Impressum) */
.legal-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none; /* Will be shown via JavaScript */
    overflow-y: auto;
    padding: 40px 20px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.legal-content {
    padding: 30px;
}

.legal-content h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
}

.legal-content h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.legal-content h4 {
    color: var(--dark);
    font-size: 1rem;
    margin: 15px 0 8px 0;
    font-weight: 600;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 5px;
}

.legal-close {
    text-align: center;
    margin-top: 30px;
} 