/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-teal: #6b8e9f;
    --bright-cyan: #e8d5e3;
    --light-cyan: #f0e6f5;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --text-dark: #4a5568;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-teal);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: var(--dark-teal);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 70px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: 38px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.home-icon-link {
    color: var(--bright-cyan);
    padding: 0.5rem;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.home-icon-link:hover {
    color: var(--white);
    background-color: rgba(232, 213, 227, 0.15);
}

.home-icon {
    width: 36px;
    height: 36px;
    display: block;
}

.logo-image {
    height: 52px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav .nav-link {
    color: var(--bright-cyan);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    position: relative;
}

.header-nav .nav-link:hover {
    color: var(--white);
    background-color: rgba(232, 213, 227, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-teal);
    min-width: 320px;
    white-space: nowrap;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    color: var(--bright-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.nav-dropdown-link:hover {
    background-color: rgba(232, 213, 227, 0.2);
    color: var(--white);
    border-left-color: var(--bright-cyan);
    padding-left: 1.75rem;
    transform: translateX(4px);
}

.nav-icon {
    display: flex;
    align-items: center;
    padding: 0.25rem;
}

.instagram-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--bright-cyan);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-icon:hover .instagram-icon {
    color: var(--light-cyan);
    transform: scale(1.1);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-button span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--dark-teal);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
}

.mobile-menu-nav .nav-link {
    color: var(--bright-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
}

.mobile-menu-nav .nav-link:hover {
    color: var(--light-cyan);
}

.mobile-menu-nav .nav-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-menu-nav .nav-dropdown-toggle {
    color: var(--bright-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 0;
    cursor: pointer;
}

.mobile-menu-nav .nav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-nav .nav-dropdown.active .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-menu-nav .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin: 0.5rem 0 0 1rem;
    display: none;
}

.mobile-menu-nav .nav-dropdown.active .nav-dropdown-menu {
    display: block;
}

.mobile-menu-nav .nav-dropdown-link {
    padding: 0.5rem 0;
    font-size: 1rem;
    border-left: none;
}

.mobile-menu-nav .nav-dropdown-link:hover {
    padding-left: 0.5rem;
    border-left: 3px solid var(--bright-cyan);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    padding: 2rem 3rem;
    overflow: hidden;
}

.hero--split {
    padding: 0;
    position: relative;
    height: auto;
    min-height: auto;
}

.hero--logo-only {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #e8dcef 0%, #f5eef9 50%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero--logo-only .hero-logo-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: auto;
    width: 100%;
}

.hero--logo-only .hero-logo-block .hero-logo {
    max-width: 900px;
    max-height: 95%;
}

.hero-images-row {
    display: flex;
    width: 100%;
    max-height: 42vh;
}

.hero-image-wrapper {
    flex: 1;
    max-height: 42vh;
    line-height: 0;
    overflow: hidden;
}

.hero-image-wrapper--left .hero-image {
    object-position: left center;
}

.hero-image-wrapper--right {
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper--right .hero-image {
    object-position: right center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 42vh;
    display: block;
    object-fit: contain;
    object-position: top center;
}

.hero-logo-block {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 2rem;
    pointer-events: none;
}

.hero-logo-block .hero-logo {
    pointer-events: auto;
    max-width: 90%;
    max-height: 80%;
    width: auto;
    height: auto;
    margin: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 95, 0.75), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-logo {
    max-width: 560px;
    width: 100%;
    height: auto;
    margin: 0 0 1.5rem 0;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 0;
}

/* Main Container */
.main-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-content: center;
}

/* Sidebar Navigation */
.sidebar {
    width: 250px;
    background-color: var(--dark-teal);
    padding: 3rem 2rem;
    min-height: calc(100vh - 70vh);
    position: sticky;
    top: 80px;
    align-self: flex-start;
    margin-right: 3rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-link {
    color: var(--bright-cyan);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--light-cyan);
}

/* Content Area */
.content {
    width: 100%;
    max-width: 1200px;
    padding: 3rem 0;
    margin: 0 auto;
}

.content--about {
    padding: 2rem 0;
}

/* Trainingsangebot Section */
.trainingsangebot-section {
    background-color: var(--white);
    padding: 5rem 0;
    width: 100%;
}

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

@media (max-width: 480px) {
    .trainingsangebot-container {
        padding: 0 1rem;
    }
}

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

.trainingsangebot-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.trainingsangebot-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.trainingsangebot-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 0;
    background-color: var(--dark-teal);
    color: var(--white);
}

/* Alternative: Outline-Style – heller Hintergrund, randlos */
.trainingsangebot-tag--outline {
    background-color: var(--light-cyan);
    color: var(--dark-teal);
    border: none;
}

.trainingsangebot-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1rem 0;
}

.trainingsangebot-card {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.trainingsangebot-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trainingsangebot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainingsangebot-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bright-cyan), var(--light-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.trainingsangebot-card-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

@media (max-width: 1024px) {
    .trainingsangebot-gallery {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .trainingsangebot-section {
        padding: 3rem 0;
    }

    .trainingsangebot-title {
        font-size: 2rem;
    }

    .trainingsangebot-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .trainingsangebot-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trainingsangebot-card {
        height: 300px;
    }
}

/* Studio Section */
.studio-section {
    background-color: var(--white);
    padding: 4rem 0;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid var(--dark-teal);
}

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

.studio-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.studio-description {
    font-size: 1.1rem;
    color: var(--dark-teal);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.studio-image-wrapper {
    width: 100%;
    height: 100%;
}

.studio-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.studio-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.studio-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-teal), var(--bright-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.studio-placeholder-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.studio-map-wrapper {
    width: 100%;
}

.studio-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.studio-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* News Section */
.news-section {
    background-color: var(--white);
    padding: 4rem 0;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid var(--dark-teal);
}

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

.news-header {
    margin-bottom: 3rem;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.news-intro {
    font-size: 1.1rem;
    color: var(--dark-teal);
    line-height: 1.8;
    max-width: 800px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-teal), var(--bright-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-placeholder {
    font-size: 4rem;
}

.news-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    color: var(--dark-teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.news-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card-text {
    flex: 1;
    color: var(--dark-teal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-button {
    margin-top: auto;
    width: fit-content;
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background-color: var(--dark-teal);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.news-card-button:hover {
    background-color: #5a7a8a;
}

/* News Fly-over Modal */
.news-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.news-modal-overlay.active {
    display: flex;
}

.news-modal {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    border: 3px solid var(--dark-teal);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.news-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-teal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.news-modal-close:hover {
    background-color: var(--light-cyan);
    transform: rotate(90deg);
}

.news-modal-content {
    padding: 2.5rem 2rem;
}

.news-modal-category {
    display: inline-block;
    color: var(--dark-teal);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.news-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.news-modal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.news-modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 4rem 0;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid var(--dark-teal);
}

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    margin-bottom: 3rem;
    text-align: left;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--dark-teal);
    opacity: 0.8;
}

.testimonials-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    margin: 3rem 0;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background-color: var(--bright-cyan);
    border-radius: 12px;
    padding: 2.5rem;
    width: calc(33.333% - 1.33rem);
    height: 400px;
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card.active {
    display: flex;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
    flex-shrink: 0;
}

.testimonial-text {
    color: var(--dark-teal);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.testimonial-author {
    flex-shrink: 0;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--dark-teal);
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-nav {
    background-color: var(--dark-teal);
    border: 2px solid var(--bright-cyan);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background-color: var(--bright-cyan);
    color: var(--dark-teal);
    transform: scale(1.1);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bright-cyan);
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--bright-cyan);
    padding: 4rem 0;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid var(--dark-teal);
}

.newsletter-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-content {
    max-width: 800px;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.1rem;
    color: var(--dark-teal);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    background-color: var(--white);
    color: var(--dark-teal);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    background-color: var(--dark-teal);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-button-link {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.newsletter-button:hover {
    background-color: #144a4a;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.25);
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
}

.footer-contact {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.95;
    margin: 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-legal-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-separator {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Legacy footer styles (for backwards compatibility) */
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--bright-cyan);
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0;
}

.pricing-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 1.1rem;
    color: var(--dark-teal);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-select-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.pricing-select-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-teal);
}

.pricing-type-select {
    min-width: 320px;
    max-width: 100%;
    padding: 1rem 3rem 1rem 1.25rem;
    font-size: 1.1rem;
    font-family: inherit;
    color: var(--dark-teal);
    background-color: var(--white);
    border: 2px solid rgba(107, 142, 159, 0.3);
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%236b8e9f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-type-select:hover {
    border-color: rgba(107, 142, 159, 0.5);
}

.pricing-type-select:focus {
    outline: none;
    border-color: var(--dark-teal);
    box-shadow: 0 0 0 3px rgba(20, 74, 74, 0.15);
}

.pricing-category {
    margin-bottom: 5rem;
}

.pricing-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.5rem;
}

.pricing-category-subtitle {
    font-size: 1.1rem;
    color: var(--dark-teal);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured {
    border-color: var(--bright-cyan);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-teal);
}

.pricing-badge {
    background-color: var(--bright-cyan);
    color: var(--dark-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-badge-featured {
    background-color: var(--dark-teal);
    color: var(--white);
}

.pricing-badge-discount {
    background-color: var(--bright-cyan);
    color: var(--dark-teal);
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    display: block;
}

.pricing-period {
    font-size: 1rem;
    color: var(--dark-teal);
    opacity: 0.7;
}

.pricing-savings {
    background-color: var(--bright-cyan);
    color: var(--dark-teal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--dark-teal);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(26, 95, 95, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-feature-highlight {
    font-weight: 600;
    color: var(--dark-teal);
    background-color: rgba(232, 213, 227, 0.3);
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem;
    border-radius: 6px;
}

.pricing-button {
    display: inline-block;
    width: 100%;
    margin-top: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background-color: var(--dark-teal);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.pricing-button:hover {
    background-color: #5a7a8a;
}

.pricing-button-featured {
    background-color: var(--dark-teal);
    color: var(--white);
}

.pricing-button-featured:hover {
    background-color: #5a7a8a;
    color: var(--white);
}

.pricing-info {
    background-color: var(--bright-cyan);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.pricing-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 2rem;
    text-align: center;
}

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

.pricing-info-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.pricing-info-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.75rem;
}

.pricing-info-item-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.7;
}

/* About Me Section */
.about-section {
    padding: 2rem 0;
}

.about-intro {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 0;
}

.about-intro-image {
    flex: 0 0 360px;
    width: 360px;
}

.about-portrait {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-intro-content {
    flex: 1;
    min-width: 0;
}

.about-image-wrapper {
    width: 100%;
}

.about-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}

.about-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: linear-gradient(135deg, var(--dark-teal), var(--bright-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-placeholder-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.about-intro-text {
    width: 100%;
    text-align: left;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.about-title-script {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 1rem;
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-story {
    margin-bottom: 0;
}

.about-qualifications {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.about-values {
    margin-bottom: 2.5rem;
}

.about-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1.25rem;
    text-align: center;
}

.about-section-title-inline {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-section-title--left {
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-story-content {
    max-width: 100%;
    margin: 0;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.25rem;
}

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

@media (max-width: 600px) {
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
}

.qualification-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.qualification-card-header {
    background: linear-gradient(135deg, var(--dark-teal), #5a7a8a);
    padding: 1rem 1.5rem;
    text-align: center;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualification-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-cyan);
}

.qualification-card-body {
    padding: 1.5rem;
    text-align: center;
}

.qualification-icon {
    font-size: 3rem;
    line-height: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualification-icon--spine {
    font-size: inherit;
    width: 3rem;
    height: 4rem;
    min-height: 4rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualification-icon--spine svg {
    width: 100%;
    height: 100%;
    color: var(--dark-teal);
}

.qualification-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.7;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.value-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--bright-cyan);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.7;
}

.about-cta {
    background-color: var(--bright-cyan);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.about-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.75rem;
}

.about-cta-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .cta-button {
        width: 100%;
        text-align: center;
    }
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.cta-button-primary {
    background-color: var(--dark-teal);
    color: var(--white);
}

.cta-button-primary:hover {
    background-color: #5a7a8a;
}

.cta-button-secondary {
    background-color: var(--dark-teal);
    color: var(--white);
}

.cta-button-secondary:hover {
    background-color: #5a7a8a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .footer-contact {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-nav {
        display: none;
    }

    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta-title {
        font-size: 1.5rem;
    }

    .about-image {
        max-width: 100%;
        height: auto;
    }

    .about-image-placeholder {
        max-width: 100%;
        height: 400px;
    }

    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta-title {
        font-size: 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero--logo-only {
        min-height: 320px;
        padding: 2rem 1.5rem;
    }

    .hero--logo-only .hero-logo-block .hero-logo {
        max-width: 600px;
    }

    .hero-images-row {
        max-height: 35vh;
    }

    .hero-image-wrapper {
        max-height: 35vh;
    }

    .hero-image {
        max-height: 35vh;
    }

    .hero-logo-block {
        width: 100%;
        min-height: 180px;
    }

    .hero-logo-block .hero-logo {
        height: auto;
        max-height: none;
        max-width: 320px;
    }

    .hero-logo {
        max-width: 380px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .studio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .studio-image-placeholder,
    .studio-map iframe {
        height: 300px;
    }

    .news-section,
    .testimonials-section,
    .newsletter-section,
    .studio-section {
        padding: 2rem 0;
    }

    .news-container,
    .testimonials-wrapper,
    .newsletter-wrapper,
    .studio-container {
        padding: 0 1.5rem;
    }

    .news-title,
    .testimonials-title,
    .newsletter-title,
    .studio-title {
        font-size: 2rem;
    }

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

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

    .testimonials-container {
        gap: 1rem;
    }

    .testimonial-nav {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }

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

    .pricing-type-select {
        min-width: 100%;
        width: 100%;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }

    .about-intro {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-intro-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .about-title-script {
        text-align: center;
        font-size: 2.25rem;
    }

    .pricing-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .mobile-menu-button {
        display: flex;
    }

    .header-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

    .header-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-dropdown-menu {
        min-width: 200px;
    }

    .nav-dropdown-link {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
    }

    .header-nav .nav-link {
        font-size: 1.2rem;
    }

    .home-icon {
        width: 32px;
        height: 32px;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .hero--split {
        min-height: auto;
    }

    .hero--logo-only {
        min-height: 260px;
        padding: 1.5rem 1rem;
    }

    .hero--logo-only .hero-logo-block .hero-logo {
        max-width: 420px;
    }

    .hero-images-row {
        max-height: 30vh;
    }

    .hero-image-wrapper {
        max-height: 30vh;
    }

    .hero-image {
        max-height: 30vh;
    }

    .hero-logo-block {
        width: 100%;
        min-height: 150px;
    }

    .hero-logo-block .hero-logo {
        height: auto;
        max-height: none;
        max-width: 260px;
    }

    .hero-logo {
        max-width: 300px;
    }

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

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

    .main-container {
        padding: 0 1rem;
    }

    .content {
        padding: 2rem 0;
    }

    .trainingsangebot-title {
        font-size: 1.75rem;
    }

    .footer-contact {
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    width: 1400px;
    max-height: 95vh;
    margin: 1rem auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    overflow-y: auto;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.lightbox-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.lightbox-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.lightbox-image:hover {
    transform: scale(1.05);
}

.lightbox-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-dark);
    background-color: var(--bright-cyan);
    border-radius: 8px;
}

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

@media (max-width: 1400px) {
    .lightbox-content {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .lightbox-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lightbox-content {
        max-width: 95%;
        width: 95%;
        padding: 1.5rem;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lightbox-gallery {
        grid-template-columns: 1fr;
    }
}

/* Geräte Section */
.geraete-section {
    background-color: var(--white);
    padding: 5rem 0;
    width: 100%;
    border-top: 1px solid var(--dark-teal);
}

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

@media (max-width: 480px) {
    .geraete-container {
        padding: 0 1rem;
    }
}

.geraete-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.geraete-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.geraete-description {
    font-size: 1.1rem;
    color: var(--dark-teal);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Matte Einzel/Duo Options */
.matte-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.matte-option-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bright-cyan);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Personal Training: Hover-Effekt deaktiviert */
body.page-personaltraining .matte-option-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Matte Einzel oder Duo: Hover-Effekt deaktiviert */
body.page-matte .matte-option-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Pilates in Schwangerschaft: Hover-Effekt deaktiviert */
body.page-schwangerschaft .matte-option-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.matte-option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.matte-option-icon--svg {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: inherit;
}

.matte-option-icon--svg svg {
    width: 3rem;
    height: 3rem;
    color: inherit;
}

.matte-option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.matte-option-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.matte-option-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: auto;
}

.matte-option-features li {
    padding: 0.5rem 0;
    color: var(--dark-teal);
    font-size: 0.95rem;
}

.matte-benefits {
    margin-bottom: 4rem;
}

/* Personal Training Geräte – unterschiedliche Karten */
.geraete-card--individuell {
    background: linear-gradient(135deg, var(--dark-teal), #5a7a8a);
    color: var(--light-cyan);
}

.geraete-card--individuell .matte-option-title,
.geraete-card--individuell .matte-option-text,
.geraete-card--individuell .matte-option-features li,
.geraete-card--individuell .matte-option-icon {
    color: var(--light-cyan);
}

.geraete-card--individuell .matte-option-icon svg {
    stroke: var(--light-cyan);
}

.geraete-card--spektrum {
    background-color: var(--white);
    border: 2px solid var(--dark-teal);
    border-left: 5px solid var(--dark-teal);
}

.geraete-card--spektrum .matte-option-title,
.geraete-card--spektrum .matte-option-text,
.geraete-card--spektrum .matte-option-features li,
.geraete-card--spektrum .matte-option-icon {
    color: var(--dark-teal);
}

.geraete-card--spektrum .matte-option-icon svg {
    stroke: var(--dark-teal);
}

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

/* Geräte cards – 3 Kacheln oben, 2 Kacheln unten */
.geraete-section .schedule-cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.geraete-card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--bright-cyan), var(--light-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.geraete-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-card-body .geraete-card-description {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-teal);
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .geraete-section {
        padding: 3rem 0;
    }

    .geraete-card-image {
        height: 180px;
    }
}

/* Gutschein Section */
.gutschein-section {
    background-color: var(--bright-cyan);
    min-height: calc(100vh - 80px);
    padding: 2rem 1.5rem;
    width: 100%;
}

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

.gutschein-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gutschein-panel {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gutschein-panel-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Left Panel Styles */
.gutschein-amount-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.gutschein-amount-btn {
    flex: 1;
    padding: 0.75rem;
    background-color: var(--white);
    border: 2px solid var(--dark-teal);
    border-radius: 8px;
    color: var(--dark-teal);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gutschein-amount-btn:hover {
    background-color: var(--light-cyan);
}

.gutschein-amount-btn.active {
    background-color: var(--dark-teal);
    color: var(--white);
}

.gutschein-custom-amount {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.gutschein-custom-input {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid var(--dark-teal);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.gutschein-validity {
    margin-bottom: 1.5rem;
}

.gutschein-validity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.gutschein-validity-item label {
    font-size: 0.9rem;
    color: var(--text-dark);
    min-width: 100px;
}

.gutschein-date-input {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid var(--dark-teal);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.gutschein-validity-text {
    font-size: 0.9rem;
    color: var(--dark-teal);
    font-weight: 600;
}

.gutschein-message {
    margin-bottom: 1.5rem;
    position: relative;
}

.gutschein-message-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.gutschein-message-textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 2px solid var(--dark-teal);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-dark);
    resize: vertical;
}

.gutschein-char-count {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.6;
}

.gutschein-checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gutschein-checkout-btn:hover {
    background-color: #144a4a;
    color: var(--white);
}

/* Right Panel Styles */
.gutschein-preview {
    margin-bottom: 1.5rem;
}

.gutschein-preview-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--dark-teal), var(--bright-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.gutschein-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gutschein-thumbnails {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.gutschein-thumb-nav {
    background-color: var(--light-cyan);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.gutschein-thumb-nav:hover {
    background-color: var(--dark-teal);
    color: var(--white);
}

.gutschein-thumb-nav svg {
    width: 18px;
    height: 18px;
}

.gutschein-thumbnails-grid {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    overflow-x: auto;
}

.gutschein-thumbnail {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gutschein-thumbnail:hover {
    border-color: var(--dark-teal);
}

.gutschein-thumbnail-active {
    border-color: var(--dark-teal);
}

.gutschein-thumbnail-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bright-cyan), var(--light-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.gutschein-thumbnail-check {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--dark-teal);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 8px;
    color: var(--white);
}

.gutschein-thumbnail:not(.gutschein-thumbnail-active) .gutschein-thumbnail-check {
    display: none;
}

.gutschein-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.gutschein-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--dark-teal);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gutschein-dot-active {
    opacity: 1;
}

.gutschein-footer {
    text-align: center;
    color: var(--text-dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gutschein-eversports-logo {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .gutschein-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gutschein-section {
        padding: 2rem 1rem;
    }

    .gutschein-panel {
        padding: 1.5rem;
    }

    .gutschein-amount-buttons {
        flex-direction: column;
    }

    .gutschein-validity-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .gutschein-validity-item label {
        min-width: auto;
    }

    .gutschein-custom-amount {
        flex-wrap: wrap;
    }
}

/* Stundenplan Section */
.schedule-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.schedule-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    text-align: center;
    margin-bottom: 3rem;
}

/* Stundenplan Kachel-Darstellung */
.schedule-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
}

.schedule-card-header {
    background: linear-gradient(135deg, var(--dark-teal), #5a7a8a);
    padding: 1.5rem 2rem;
    text-align: center;
}

.schedule-card-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-cyan);
}

.schedule-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.schedule-card-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.5rem;
}

.schedule-card-duration {
    font-size: 0.95rem;
    color: var(--dark-teal);
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.schedule-card-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-teal);
    margin-bottom: 0.75rem;
}

.schedule-card-icon {
    flex-shrink: 0;
    stroke: var(--dark-teal);
}

.schedule-card-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--dark-teal);
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.schedule-card-button:hover {
    background-color: #5a7a8a;
    color: var(--white);
}

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

.schedule-info-text p {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.schedule-info-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--dark-teal);
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.schedule-info-button:hover {
    background-color: #5a7a8a;
    color: var(--white);
}

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

    .schedule-title {
        font-size: 2rem;
    }
}

.schedule-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    min-width: 800px;
}

.schedule-table thead {
    background-color: var(--dark-teal);
    color: var(--white);
}

.schedule-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--bright-cyan);
}

.schedule-table th:first-child {
    border-radius: 12px 0 0 0;
}

.schedule-table th:last-child {
    border-radius: 0 12px 0 0;
}

.schedule-table tbody tr {
    border-bottom: 1px solid rgba(107, 142, 159, 0.1);
    transition: background-color 0.3s ease;
}

.schedule-table tbody tr:hover {
    background-color: var(--light-cyan);
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 1.25rem 1rem;
    vertical-align: top;
}

.time-slot {
    font-weight: 600;
    color: var(--dark-teal);
    background-color: var(--bright-cyan);
    white-space: nowrap;
    min-width: 120px;
}

.course-cell {
    position: relative;
}

.course-cell.empty {
    background-color: rgba(107, 142, 159, 0.05);
}

.course-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--dark-teal);
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-item:hover {
    background-color: var(--bright-cyan);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.course-name {
    font-weight: 600;
    color: var(--dark-teal);
    font-size: 1rem;
}

.course-level {
    font-size: 0.85rem;
    color: var(--dark-teal);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-info {
    background-color: var(--bright-cyan);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.schedule-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 2rem;
    text-align: center;
}

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

.schedule-info-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.schedule-info-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.75rem;
}

.schedule-info-item-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .schedule-table {
        font-size: 0.9rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 1rem 0.75rem;
    }

    .schedule-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .schedule-container {
        padding: 0 1rem;
    }

    .schedule-table-wrapper {
        margin-bottom: 2rem;
    }

    .schedule-table {
        min-width: 600px;
        font-size: 0.85rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.75rem 0.5rem;
    }

    .time-slot {
        min-width: 100px;
        font-size: 0.9rem;
    }

    .course-name {
        font-size: 0.9rem;
    }

    .course-level {
        font-size: 0.75rem;
    }

    .schedule-info {
        padding: 2rem 1.5rem;
    }

    .schedule-info-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .schedule-table {
        min-width: 500px;
        font-size: 0.8rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.5rem 0.4rem;
    }

    .time-slot {
        min-width: 80px;
        font-size: 0.8rem;
    }

    .course-name {
        font-size: 0.85rem;
    }

    .schedule-container {
        padding: 0 0.5rem;
    }

    .agb-container,
    .contact-container {
        padding: 0 1rem;
    }
}

/* AGB Section */
.agb-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.agb-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.agb-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    text-align: center;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.agb-intro {
    font-size: 1.1rem;
    color: var(--dark-teal);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.agb-content {
    color: var(--dark-teal);
}

.agb-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.agb-heading:first-of-type {
    margin-top: 0;
}

.agb-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .agb-section {
        padding: 3rem 0;
    }

    .agb-container {
        padding: 0 1.5rem;
    }

    .agb-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .agb-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .agb-heading {
        font-size: 1.1rem;
    }

    .agb-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .agb-section {
        padding: 2rem 0;
    }

    .agb-container {
        padding: 0 1rem;
    }

    .agb-title {
        font-size: 1.5rem;
    }

    .agb-intro {
        font-size: 0.95rem;
    }
}

/* Kontakt Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--dark-teal);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--bright-cyan);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-teal);
}

.form-input {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark-teal);
    background-color: var(--white);
    border: 2px solid rgba(107, 142, 159, 0.3);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--dark-teal);
}

.form-input::placeholder {
    color: rgba(107, 142, 159, 0.5);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b8e9f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-group-checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-teal);
    cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--dark-teal);
    cursor: pointer;
}

.form-checkbox-label a {
    color: var(--dark-teal);
    text-decoration: underline;
}

.form-checkbox-label a:hover {
    text-decoration: none;
}

.form-group-captcha .form-input-captcha {
    max-width: 120px;
}

.form-input-error {
    border-color: #c53030 !important;
}

.form-captcha-error {
    display: block;
    font-size: 0.875rem;
    color: #c53030;
    margin-top: 0.25rem;
}

.form-submit-error {
    padding: 1rem;
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    color: #c53030;
    font-size: 0.95rem;
}

.form-success-message {
    text-align: center;
    padding: 2.5rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: var(--dark-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.form-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-size: 1rem;
    color: var(--dark-teal);
    line-height: 1.6;
}

.contact-form-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background-color: var(--dark-teal);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-button:hover {
    background-color: #5a7a8a;
}

.contact-form-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form-button-link {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.contact-info-wrapper {
    position: sticky;
    top: 6rem;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark-teal), #5a7a8a);
    padding: 2rem;
    border-radius: 12px;
    color: var(--light-cyan);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-cyan);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    stroke: var(--light-cyan);
}

.contact-info-link {
    color: var(--bright-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--white);
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        position: static;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-intro {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-input {
        min-height: 44px;
        padding: 0.875rem 1rem;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-checkbox-label {
        font-size: 0.9rem;
    }

    .form-group-captcha .form-input-captcha {
        max-width: 100%;
        min-width: 80px;
    }

    #captcha-label {
        font-size: 0.9rem;
    }

    .contact-form-button {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        font-size: 16px;
    }

    .form-checkbox-label span {
        word-wrap: break-word;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-item {
        font-size: 0.9rem;
    }
}
