/* Reset and Base Styles */
:root {
    /* CI Colors */
    --primary-color: #0A2463;
    --secondary-color: #00A878;
    --accent-color: #3E92CC;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    
    /* CI Color Variations */
    --primary-light: #1a3473;
    --primary-dark: #071d54;
    --secondary-light: #00c78d;
    --secondary-dark: #008c63;
    --accent-light: #5ea8d6;
    --accent-dark: #2a7cb3;
    
    /* Typography */
    --font-primary: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing - Consistent System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    --container-max-width: 1200px;
    --section-padding: var(--space-xl) 0;
    --header-height: 80px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows - Consistent System */
    --shadow-sm: 0 2px 4px rgba(10, 36, 99, 0.1);
    --shadow-md: 0 4px 8px rgba(10, 36, 99, 0.1);
    --shadow-lg: 0 8px 16px rgba(10, 36, 99, 0.1);
    --shadow-xl: 0 12px 24px rgba(10, 36, 99, 0.1);
    
    /* Border Radius - Consistent System */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    max-width: 70ch;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 500;
}

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

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

ul {
    list-style: none;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    transition: var(--transition-base);
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-primary);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-base);
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-lg {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1.1rem;
}

.btn-sm {
    padding: calc(var(--space-xs) * 0.8) var(--space-sm);
    font-size: 0.9rem;
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

.section-heading {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-sm);
}

.section-heading p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin: 0 auto;
    max-width: 600px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    min-height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
/* Neue Regel für SVG-Logo hinzufügen */
.logo svg {
  width: 50px; /* oder die gewünschte Größe */
  height: auto;
  transition: transform 0.3s ease; /* für Hover-Effekte, falls gewünscht */
}

.logo svg:hover {
  transform: scale(1.05); /* leichter Hover-Effekt, falls gewünscht */
}

.logo-img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.logo-text h1 a {
    color: var(--primary-color);
    text-decoration: none;
}

.logo-text h1 a:hover {
    color: var(--secondary-color);
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 400;
    margin-top: 0.2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    padding: var(--space-xs) 0;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-base);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-md);
    list-style: none;
    background-color: transparent;
    border-radius: var(--radius-sm);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: var(--space-xs);
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: var(--space-xs);
    color: var(--gray-color);
    content: "/";
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray-color);
}

/* Liquid Glass Hero Section */
.hero.liquid-glass {
    height: 80vh;
    min-height: 600px;
    background: url('../images/hero-bg-liquid-glass.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

/* Glass overlay effect */
.hero-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 36, 99, 0.3) 0%, 
        rgba(62, 146, 204, 0.2) 50%,
        rgba(10, 36, 99, 0.4) 100%);
    backdrop-filter: blur(1px) saturate(120%);
    z-index: 1;
}

/* Enhanced glass bottom edge */
.hero.liquid-glass::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        var(--white) 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 20%, 0 100%);
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* Content styling for glass effect */
.hero.liquid-glass .hero-content {
    max-width: 650px;
    position: relative;
    z-index: 3;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero.liquid-glass h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero.liquid-glass p {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero.liquid-glass .hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero.liquid-glass .hero-content {
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-sm);
        border-radius: 24px;
    }
}



/* About Section */
.about-section {
    background-color: var(--white);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.about-image::after {
    content: '';
    position: absolute;
    top: var(--space-md);
    right: calc(-1 * var(--space-md));
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.expertise-list {
    margin: var(--space-md) 0 var(--space-lg) 0;
    padding-left: 0;
}

.expertise-list li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.expertise-list li::before {
    content: '✓';
    margin-right: var(--space-xs);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    position: relative;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.services-section::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 0);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 20%, 0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 3px solid var(--light-gray);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-color: var(--secondary-color);
    transform: scale(1.1);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* Blog Section */
.blog-section {
    background-color: var(--white);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 0.8rem;
    background-color: var(--light-gray);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    margin-bottom: var(--space-xs);
}

.blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-card p {
    color: var(--gray-color);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
}

.view-all-btn {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 0);
}

.testimonials-section .section-heading h2,
.testimonials-section .section-heading p {
    color: var(--white);
}

.testimonials-section .section-heading h2::after {
    background-color: var(--secondary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-base);
    height: 100%;
}

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

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    font-family: serif;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
    color: var(--white);
}

.testimonial-text {
    margin-bottom: var(--space-md);
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    margin-right: var(--space-sm);
    border: 2px solid rgba(255,255,255,0.3);
}

.author-details h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-details span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.faq-question {
    padding: var(--space-md);
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
    font-family: var(--font-primary);
    min-height: 44px;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: var(--space-md);
    max-height: 1000px;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background-color: var(--white);
    min-height: 44px;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 120, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: right;
    margin-top: var(--space-md);
}



/* Neue Stile für die zweispaltige Kontaktsektion */
.contact-two-columns {
    display: flex;
    gap: var(--space-lg);
}

.contact-info, .contact-form {
    flex: 1;
    width: 50%;
}

/* Responsive Anpassung für mobile Geräte */
@media (max-width: 768px) {
    .contact-two-columns {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}


/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* Drei Spalten mit unterschiedlicher Breite */
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

/* Kontaktbereich in die dritte Spalte setzen */
.footer-contact {
  grid-column: 3;
  grid-row: 1;
}

/* Für mobile Ansicht */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr; /* Eine Spalte bei kleinen Bildschirmen */
  }
  
  .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }
}

.footer-about {
    flex: 2;
    min-width: 300px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
    gap: var(--space-sm);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.footer-logo h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
    font-size: 1.2rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-sm);
}

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

.footer-links ul li {
    margin-bottom: var(--space-xs);
}

.footer-links ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.footer-contact p i {
    margin-right: var(--space-xs);
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition-base);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Für mobile Ansicht */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image {
        margin-bottom: var(--space-md);
    }
    
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-base);
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-sm);
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .services-grid,
    .blog-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: var(--space-lg);
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-heading {
        margin-bottom: var(--space-lg);
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .section-heading p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: var(--space-md);
    }
}
/* 404 Error Page Styles */
.error-page {
    padding: 100px 0;
    text-align: center;
}

.error-page h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.error-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.error-actions {
    margin-bottom: 3rem;
}

.error-actions .btn {
    margin: 0 10px;
}

.suggested-pages {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.suggested-pages h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.suggested-pages ul {
    list-style-type: none;
    padding: 0;
}

.suggested-pages li {
    margin-bottom: 0.5rem;
}

.suggested-pages a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.suggested-pages a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Styles */
.post {
    padding: 60px 0;
}

.post .container {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 40px;
}

/* Banner-Styling */
.page-banner {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0; /* Kein Margin */
  padding: 0; /* Kein Padding */
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
  z-index: 2;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #ffffff; 
}

/* Optional: Overlay für bessere Lesbarkeit */
.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 36, 99, 0.2); /* Leicht transparentes Marineblau */
  z-index: 1;
}

/* Breadcrumb-Styling */
.breadcrumb-section {
  background-color: #f5f5f5;
  padding: 0.5rem 0;
  margin: 0; /* Kein Margin */
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.breadcrumb-item:not(:first-child)::before {
  content: "/";
  padding: 0 0.5rem;
  color: #6c757d;
}

.breadcrumb-item a {
  color: #0A2463;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
  color: #00A878;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* Hauptinhalt-Styling */
.legal-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }
  
  .banner-content h1 {
    font-size: 1.8rem;
  }
}


.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.post-date, .post-categories, .post-reading-time {
    display: flex;
    align-items: center;
}

.post-date i, .post-categories i, .post-reading-time i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.post-categories a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.post-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin-left: 0;
    font-style: italic;
    color: #555;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.post-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.post-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.post-tags li a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-tags li a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-navigation-prev, .post-navigation-next {
    max-width: 45%;
}

.post-navigation a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Overview Styles */
.blog-overview {
    padding: 60px 0;
}

.blog-overview .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.blog-overview .section-heading h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-overview .section-heading p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.blog-categories {
    margin-bottom: 40px;
}

.blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.blog-categories li a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-categories li a:hover, .blog-categories li a.active {
    background-color: var(--secondary-color);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #999;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post .container {
        padding: 0 20px;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   iOS LIQUID GLASS BUTTONS
   ======================================== */

/* ===========================
   PERFECT iOS LIQUID GLASS BUTTONS
   Step 2 (125% × 100%) Strong Front Lighting
   =========================== */

/* Base iOS Button Styles */
.ios-glass-button,
.ios-text-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    
    /* Enhanced shadow system */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.ios-text-button {
    min-width: 200px;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 18px;
}

.ios-glass-button.small,
.ios-text-button.small {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 120px;
    border-radius: 14px;
}

/* Button Text Wrapper */
.ios-glass-button span,
.ios-text-button span,
.ios-glass-button .button-text,
.ios-text-button .button-text,
.ios-glass-button .button-content {
    position: relative;
    z-index: 2;
}

/* NAVY BLUE - Primary Actions (#0A2463) */
.ios-glass-button.navy,
.ios-text-button.navy {
    background: linear-gradient(135deg, 
        #0A2463 0%,
        #1a3a7a 50%, 
        #0A2463 100%);
}

/* EMERALD GREEN - Secondary Actions (#00A878) */
.ios-glass-button.emerald,
.ios-text-button.emerald {
    background: linear-gradient(135deg, 
        #00A878 0%,
        #00c78d 50%, 
        #00A878 100%);
}

/* LIGHT BLUE - Tertiary Actions (#3E92CC) */
.ios-glass-button.lightblue,
.ios-text-button.lightblue {
    background: linear-gradient(135deg, 
        #3E92CC 0%,
        #5ba3d4 50%, 
        #3E92CC 100%);
}

/* Glass reflection overlay for all buttons */
.ios-glass-button::after,
.ios-text-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.15) 100%);
    z-index: 0;
}

/* PERFECT LIGHTING - Step 2 (125% × 100%) Strong Front 45° - 10% Reduced */
.ios-glass-button::before,
.ios-text-button::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    right: 2px;
    height: 60%;
    border-radius: 16px 16px 35px 35px / 16px 16px 20px 20px;
    background: radial-gradient(ellipse 125% 100% at center 10%, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.63) 30%,
        rgba(255, 255, 255, 0.27) 60%,
        transparent 100%);
    z-index: 1;
}

/* Enhanced hover effects */
.ios-glass-button:hover,
.ios-text-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.ios-glass-button:hover::before,
.ios-text-button:hover::before {
    background: radial-gradient(ellipse 125% 100% at center 10%, 
        rgba(255, 255, 255, 0.99) 0%,
        rgba(255, 255, 255, 0.693) 30%,
        rgba(255, 255, 255, 0.297) 60%,
        transparent 100%);
}

/* Active/pressed state */
.ios-glass-button:active,
.ios-text-button:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* Contact Form Submit Button Specific Styling */
input[type="submit"].ios-text-button,
button[type="submit"].ios-text-button {
    border: none;
    background: linear-gradient(135deg, 
        #00A878 0%,
        #00c78d 50%, 
        #00A878 100%);
    color: white;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

input[type="submit"].ios-text-button:hover,
button[type="submit"].ios-text-button:hover {
    transform: translateY(-3px) scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ios-text-button {
        min-width: 160px;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .ios-glass-button.small,
    .ios-text-button.small {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 100px;
    }
}
    font-size: 2rem;
}

/* Color Variations for Text Buttons */
.ios-text-button.navy {
    background: linear-gradient(135deg, 
        rgba(10, 36, 99, 0.9) 0%, 
        rgba(10, 36, 99, 0.7) 50%, 
        rgba(10, 36, 99, 0.8) 100%);
}

.ios-text-button.emerald {
    background: linear-gradient(135deg, 
        rgba(0, 168, 120, 0.9) 0%, 
        rgba(0, 168, 120, 0.7) 50%, 
        rgba(0, 168, 120, 0.8) 100%);
}

.ios-text-button.lightblue {
    background: linear-gradient(135deg, 
        rgba(62, 146, 204, 0.9) 0%, 
        rgba(62, 146, 204, 0.7) 50%, 
        rgba(62, 146, 204, 0.8) 100%);
}

/* Button Groups */
.ios-button-group {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ios-button-group.vertical {
    flex-direction: column;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ios-glass-button {
        min-width: 100px;
        min-height: 100px;
        border-radius: 24px;
    }
    
    .ios-glass-button::before {
        border-radius: 24px;
    }
    
    .ios-glass-button::after {
        border-radius: 22px 22px 50% 50%;
    }
    
    .ios-glass-button .button-content {
        font-size: 2.5rem;
    }
    
    .ios-glass-button.small {
        min-width: 70px;
        min-height: 70px;
        border-radius: 18px;
    }
    
    .ios-glass-button.small .button-content {
        font-size: 1.5rem;
    }
    
    .ios-text-button {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .ios-button-group {
        gap: var(--space-sm);
    }
}

/* Animation for floating effect */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.ios-glass-button.floating {
    animation: float 3s ease-in-out infinite;
}

/* Ripple effect for clicks */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ios-glass-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    z-index: 10;
}

