:root {
    --primary-dark: #1a3a52;
    --primary-medium: #2c5aa0;
    --primary-light: #4a7ba7;
    --accent-gold: #d4af37;
    --accent-gold-light: #e8d4a8;
    --neutral-white: #ffffff;
    --neutral-light: #f5f5f5;
    --neutral-medium: #e0e0e0;
    --neutral-dark: #2c3e50;
    --neutral-text: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--neutral-text);
    background-color: var(--neutral-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

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

p {
    margin-bottom: 1.5rem;
    color: #555;
}

a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--accent-gold);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--primary-medium);
    font-weight: 500;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--neutral-white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-light) 100%);
    color: var(--neutral-white);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 300ms ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.7) 0%, rgba(44, 90, 160, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 2rem;
    z-index: 3;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.hero .cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #e8d4a8 100%);
    color: #1a3a52;
    font-weight: 700;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* About Intro */
.about-intro {
    padding: 4rem 0;
    background: #ffffff;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services Intro */
.services-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.services-grid-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-box {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-box h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin: 0;
}

/* Know How */
.know-how {
    padding: 4rem 0;
    background: #ffffff;
}

.know-how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.know-how-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    transition: all 300ms ease;
}

.know-how-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.know-how-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.know-how-card p {
    color: #666;
    margin: 0;
}

/* Consulting Services */
.consulting-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.services-description {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--primary-dark);
    color: #ffffff;
}

.testimonials .section-header h2,
.testimonials .section-label {
    color: #ffffff;
}

.testimonials .section-label {
    color: var(--accent-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-header h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 300ms ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 300ms ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1.5rem; /* Größerer Abstand zwischen den Icons */
    margin-top: 1.5rem; /* Abstand zum Text darüber */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 300ms ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-gold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Page Content */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.page-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.expertise-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #1a3a52;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #d4af37;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-content p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-gold);
    font-weight: 600;
    transition: all 300ms ease;
}

.service-link:hover {
    color: var(--primary-medium);
    padding-left: 5px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--neutral-medium);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 300ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
}

.form-group textarea {
    min-height: 250px; /* Vergrößert das Textfeld */
    resize: vertical;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 8px;
    transition: all 300ms ease;
}

.contact-item:hover {
    background: var(--neutral-medium);
    transform: translateY(-4px);
}

.contact-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--primary-medium);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease;
    }
    .nav-menu.active { max-height: 500px; }
    .nav-link { padding: 1rem 2rem; display: block; }
    .two-column { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .services-grid-intro { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .services-grid-intro { grid-template-columns: 1fr; }
    .know-how-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.g-recaptcha iframe {
    max-width: 100%;
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 15px !important;
    }
    
    #cookie-banner > div {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    #cookie-banner button {
        width: 100% !important;
    }
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--neutral-white);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--neutral-medium);
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--neutral-text);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 300ms ease;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--accent-gold);
}

.modal-text {
    margin: 1.5rem 0;
    color: var(--neutral-text);
    line-height: 1.8;
}

.modal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-text li {
    margin-bottom: 0.5rem;
}

.modal-actions {
    margin-top: 2rem;
    text-align: center;
}

.modal-actions .cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-medium);
    color: white;
    border-radius: 4px;
    transition: background-color 300ms ease;
}

.modal-actions .cta-button:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-medium);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.learn-more-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Service Card Styling */
.service-card {
    background: var(--neutral-white);
    border: 1px solid var(--neutral-medium);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 300ms ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Navbar Right - Google Translate */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#google_translate_element {
    display: flex;
    align-items: center;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    color: white !important; /* Stellt sicher, dass der Text "Sprache auswählen" weiß ist */
}

.goog-te-gadget span {
    color: white !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-combo {
    background-color: var(--primary-medium) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    outline: none !important;
}

.goog-te-combo:hover {
    background-color: var(--accent-gold) !important;
    color: var(--primary-dark) !important;
}

@media (max-width: 768px) {
    .navbar-right {
        gap: 0.5rem;
    }

    .goog-te-combo {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
}


/* Service Items with Images */
.services-intro .service-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-intro .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.services-intro .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.services-intro .service-item h3 {
    padding: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
    margin: 0;
}

/* Cookie Settings Modal */
.cookie-options {
    margin: 1.5rem 0;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f9f9f9;
}

.cookie-option input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.cookie-option label {
    cursor: pointer;
    flex: 1;
}

.cookie-option label strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.cookie-option label p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

#cookie-save {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-medium);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#cookie-save:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* Contact Person Image */
.contact-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.contact-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Imprint Layout */
.imprint-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.imprint-item {
    text-align: center;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.imprint-item i {
    font-size: 2.5rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
}

.imprint-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.imprint-item p {
    margin: 0.25rem 0;
    color: #666;
}

/* Contact Form - Wide Layout */
.contact-form {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.contact-form .form-group:last-child {
    grid-column: 1 / -1;
}

.contact-form .g-recaptcha {
    grid-column: 1 / -1;
}

.contact-form .cta-center {
    grid-column: 1 / -1;
    text-align: center;
}

/* Maps Container */
.maps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.map-item {
    display: flex;
    flex-direction: column;
}

.map-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.map-item iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .maps-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-image {
        width: 120px;
        height: 120px;
    }

    .imprint-section {
        grid-template-columns: 1fr;
    }
}


/* Services Grid 2x4 Layout */
.services-grid-2x4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 2rem;
    margin: 2rem 0;
}

.service-card-large {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--accent-gold);
}

.service-image-large {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-large:hover .service-image-large img {
    transform: scale(1.05);
}

.service-content-large {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content-large h3 {
    color: var(--primary-dark);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.service-content-large p {
    flex: 1;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services-grid-2x4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid-2x4 {
        grid-template-columns: 1fr;
    }

    .service-image-large {
        height: 200px;
    }

    .service-content-large {
        padding: 1.5rem;
    }

    .service-content-large h3 {
        font-size: 1.25rem;
    }

    .service-content-large p {
        font-size: 0.95rem;
    }
}


/* Contact Form Wide Layout */
.contact-form-wide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 8px;
}

.contact-form-wide .form-group {
    margin-bottom: 0;
}

.contact-form-wide .form-group-full {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.contact-form-wide .g-recaptcha {
    grid-column: 1 / -1;
    margin: 1.5rem 0;
}

.contact-form-wide .cta-center {
    grid-column: 1 / -1;
    text-align: center;
}

/* Confirmation Page */
.confirmation-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem;
}

.confirmation-content {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
    max-width: 500px;
}

.confirmation-content i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.confirmation-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.confirmation-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Maps Container */
.maps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.map-item {
    display: flex;
    flex-direction: column;
}

.map-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.map-item iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .contact-form-wide {
        grid-template-columns: 1fr;
    }

    .maps-container {
        grid-template-columns: 1fr;
    }

    .map-item iframe {
        height: 300px;
    }

    .confirmation-content i {
        font-size: 3rem;
    }
}


/* Contact Person Section */
.contact-person-section {
    text-align: center;
    margin: 2rem 0;
}

.contact-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-person h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-title {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Imprint Section - 4 Columns */
.imprint-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.imprint-item {
    text-align: center;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 300ms ease;
}

.imprint-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.imprint-item i {
    font-size: 2.5rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
    display: block;
}

.imprint-item h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.imprint-item p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.imprint-item a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: color 300ms ease;
}

.imprint-item a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .imprint-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .imprint-section {
        grid-template-columns: 1fr;
    }

    .contact-image {
        width: 120px;
        height: 120px;
    }

    .imprint-item i {
        font-size: 2rem;
    }
}


/* Cookie Settings Modal */
#cookie-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-content h2 {
    color: var(--primary-dark);
    margin-top: 0;
}

.cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-medium);
}

.cookie-option label {
    flex: 1;
    cursor: pointer;
}

.cookie-option label h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-dark);
}

.cookie-option label p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 300ms ease;
}

.cookie-modal-buttons .save-btn {
    background: var(--primary-medium);
    color: white;
}

.cookie-modal-buttons .save-btn:hover {
    background: var(--primary-dark);
}

.cookie-modal-buttons .cancel-btn {
    background: #e0e0e0;
    color: #333;
}

.cookie-modal-buttons .cancel-btn:hover {
    background: #d0d0d0;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 300ms ease;
}

.close:hover,
.close:focus {
    color: var(--primary-dark);
}

@media (max-width: 600px) {
    .cookie-modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .cookie-modal-buttons button {
        width: 100%;
    }
}

/* Zweispaltige Liste für Dienstleistungen */
.services-list-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .services-list-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Button Sichtbarkeit */
.cta-button {
    color: white !important;
    text-decoration: none;
}

/* Custom Google Translate Styling */
#google_translate_element {
    margin-right: 1rem;
}

.goog-te-gadget-simple {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    font-family: 'Inter', sans-serif !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: #ffffff !important;
    font-size: 14px !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Testimonials Two Column Layout */
.testimonials-two-col {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 992px) {
    .testimonials-two-col {
        grid-template-columns: 1fr !important;
    }
}

.testimonial-card .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}


/* Cookie Banner Modal Styling */
.cookie-banner {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h3 {
    color: white;
    font-size: 22px;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 300ms ease;
}

.cookie-btn.accept {
    background: #ffd700;
    color: #1e3a5f;
}

.cookie-btn.accept:hover {
    background: #e8d4a8;
    transform: translateY(-2px);
}

.cookie-btn.refuse,
.cookie-btn.settings {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.refuse:hover,
.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 25px;
    }
    
    .cookie-content h3 {
        font-size: 18px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Hide Google Translate Branding Completely */
.goog-logo-link, 
.goog-te-gadget span, 
.goog-te-banner-frame, 
#goog-gt-tt, 
.goog-te-balloon-frame, 
.goog-te-menu-value span:nth-child(5),
.goog-te-gadget .goog-te-combo {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    display: inline-block !important;
    font-size: 14px !important;
    color: #333 !important;
    padding: 4px;
    border-radius: 4px;
}

/* Prevent body shifting when Google bar appears */
body {
    top: 0px !important;
    position: static !important;
}

.skiptranslate iframe {
    display: none !important;
}
