.gyrotonic-term {
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    font-weight: bold;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

.section {
    background: white;
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-alt {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
}

.section-white {
    background: white;
    padding: 30px 0;
}

.section-gray {
    background: #f8f9fa;
    padding: 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

    .service-image {
        height: 250px;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.section-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: left;
}

.section-title-center {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.learn-more-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    background: #f0f0f0;
    color: #333;
}

.header {
    text-align: center;
    padding: 40px 0 20px;
    background: white;
}

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

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
    display: inline-block;
    margin: 10px;
}

.nav-link:hover {
    background: #f0f0f0;
}

.nav-link-bordered {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 25px;
    transition: background 0.3s ease;
    display: inline-block;
    margin: 10px;
    border: 2px solid #2c5530;
}

.nav-link-bordered:hover {
    background: #2c5530;
    color: white;
}

.cta-button {
    background: #15652D;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    margin: 20px 0;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #145C2A;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.book-button {
    background: #15652D;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.book-button:hover {
    background: #0f4a21;
    transform: translateY(-2px);
}

.contact-section {
    background: white;
    color: #333;
    text-align: center;
    padding: 60px 0;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c5530;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.contact-button {
    background: #2c5530;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-size: 1rem;
}

.contact-button:hover {
    background: #15652D;
    transform: translateY(-2px);
}

.contact-button svg {
    flex-shrink: 0;
}

.contact-email,
.contact-phone {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    font-size: 1rem;
}

.contact-email:hover,
.contact-phone:hover {
    background: #2c5530;
    color: white;
}

.location-info {
    margin: 60px 0 30px;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c5530;
    font-weight: 400;
}

.address {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.footer {
    background: rgb(21, 101, 45);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

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

.footer-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: #15652D;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    z-index: 1000;
    white-space: nowrap;
}

.floating-button:hover {
    background-color: #145C2A;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0 10px;
}

.experience-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.experience-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-gallery-item:hover img {
    transform: scale(1.03);
}

.full-width-section {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.full-width-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.video-section {
    background: #f8f9fa;
    padding: 20px 0 0;
}

.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
        height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .contact-buttons {
        gap: 20px;
        max-width: 800px;
    }

    .contact-button,
    .contact-email,
    .contact-phone {
        width: auto;
        min-width: 200px;
        flex: 1;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 35, 19, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    z-index: 1000;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: #ffffff;
    border-radius: 24px;
    width: min(720px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-content {
    padding: 48px 48px 40px;
}

.modal-heading {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 500;
}

.modal-subheading {
    font-size: 1.1rem;
    color: #2c5530;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.modal-body {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.modal-body a {
    color: #2c5530;
    font-weight: 500;
    text-decoration: underline;
}

.modal-body a:hover {
    text-decoration: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background 0.2s ease;
    font-size: 1.5rem;
}

.modal-close:hover {
    transform: scale(1.05);
    background: rgba(236, 242, 237, 0.95);
}

.modal-close:focus-visible {
    outline: 3px solid rgba(44, 85, 48, 0.35);
    outline-offset: 4px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-start;
    }

    .modal {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }

    .modal-content {
        padding: 64px 24px 40px;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 80px;
    }

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

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        justify-content: center;
    }

    .logo-image {
        height: 80px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-buttons {
        flex-direction: column;
        margin: 30px 60px;
        gap: 12px;
        justify-content: center;
    }

    .contact-button,
    .contact-email,
    .contact-phone {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }

    .section,
    .section-alt,
    .section-white,
    .section-gray {
        padding: 20px 0;
    }

    .contact-section {
        padding: 40px 0;
    }

    .floating-button {
        height: 45px;
        padding: 0 15px;
        bottom: 20px;
        right: 20px;
        font-size: 15px;
    }

    .experience-gallery {
        grid-template-columns: 1fr;
    }

    .experience-gallery-item {
        aspect-ratio: 1 / 1;
    }

    .experience-gallery-item:not(:first-child) {
        display: none;
    }
}

.splide__arrow {
    background: #aaaaaa;
    transition: background 0.3s ease;
    opacity: 0.8;
    bottom: 0 !important;
    top: unset !important;
}

.splide__pagination {
    display: none;
}

.splide__arrow--next {
    right: 2em !important;
}

.splide__arrow--prev {
    left: 2em !important;
}

.splide__arrow:hover {
    background: #919191;
    opacity: 1;
}

.splide__arrow svg {
    fill: white;
}

.splide__pagination__page {
    background: #ccc;
}

.splide__pagination__page.is-active {
    background: #15652D;
}

.page-home .hero-section {
    background: white;
    padding: 0;
    min-height: 600px;
}

.page-home .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
}

.page-home .hero-image-container {
    position: relative;
    min-height: 400px;
    background:
        linear-gradient(to right,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.85) 90%,
        #ffffff 100%),
    url('images/studio.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-home .hero-text-container {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.page-home .hero-text h2 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
}

.page-home .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.page-home .hero-logo {
    height: 80px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .page-home .mobile-hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .page-home .mobile-hidden {
        display: block;
    }
}

.page-home .services-nav {
    background: white;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.page-home .services-nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.page-home .service-nav-item {
    color: #2c5530;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.page-home .service-nav-item:hover {
    background: #f0f0f0;
}

.page-home .approach-section {
    background: white;
    padding: 80px 0;
}

.page-home .approach-content {
    max-width: 900px;
    text-align: left;
}

.page-home .approach-content h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.3;
}

.page-home .approach-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.page-home .overview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-home .overview-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-home .overview-content {
    padding: 15px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-home .overview-content h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-home .overview-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.page-home .equipment-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-home .equipment-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-home .equipment-content {
    padding: 15px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-home .equipment-content h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-home .equipment-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.page-home .press-section {
    background: white;
    padding: 20px 0;
}

.page-home .press-cards {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

.page-home .press-card {
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .press-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.page-home .press-logo {
    font-size: 0.9rem;
    color: #15652D;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: auto;
}

.page-home .press-title {
    font-size: 1.1rem;
    color: #2c5530;
    font-weight: 600;
    line-height: 1.4;
}

.page-home .press-blurb {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.page-home .press-meta {
    font-size: 0.95rem;
    color: #666;
}

.page-home .press-image {
    height: 28px;
    width: auto;
    display: block;
    margin-bottom: 6px;
}

.page-home .konnector-layout {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-home .konnector-image-container {
    position: relative;
}

.page-home .konnector-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgb(191, 191, 191);
}

.page-home .konnector-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-home .konnector-content h3 {
    font-size: 25px;
    color: #2c5530;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
}

.page-home .konnector-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-home .rental-content {
    max-width: 900px;
    text-align: left;
}

.page-home .rental-content h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.3;
}

.page-home .rental-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.page-home .director-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.page-home .director-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.page-home .director-header h2 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.page-home .director-layout {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-home .director-image-container {
    position: relative;
}

.page-home .director-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgb(191, 191, 191);
}

.page-home .director-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-home .director-content h3 {
    font-size: 25px;
    color: #2c5530;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
}

.page-home .director-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
}

.page-home .practitioners-section {
    background: white;
    padding: 20px 0;
}

.page-home .practitioner-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-home .practitioner-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.page-home .practitioner-content h4 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-home .practitioner-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 5px;
}

.page-home .studio-section {
    background: #f8f9fa;
    padding: 20px 0 0;
}

.page-home .studio-map {
    width: 100%;

}

.page-home .studio-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.page-home .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
}

.page-home .modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
    margin: 0;
}

@media (min-width: 768px) {
    .page-home .modal-content {
        max-height: 80vh;
        overflow-x: scroll;
    }
}

@media (max-width: 768px) {
    .page-home .modal-content {
        max-height: 550px;
        overflow-x: scroll;
    }
}

.page-home .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.page-home .close:hover {
    color: #2c5530;
}

.page-home .modal-practitioner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.page-home .modal-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.page-home .modal-info h3 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 10px;
}

.page-home .modal-info .role {
    font-size: 1.2rem;
    color: #15652D;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-home .modal-info .experience {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.page-home .modal-info .specialties {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-home .modal-info .specialty-item {
    margin-bottom: 5px;
    line-height: 1.4;
}

.page-home .modal-info .languages {
    color: #666;
    font-style: italic;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.page-home .gallery-section {
    background: white;
    padding: 30px 0;
}

.page-home .gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
    grid-auto-rows: 220px;
}

.page-home .gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.page-home .gallery-item:nth-child(1) {
    grid-area: a;
}

.page-home .gallery-item:nth-child(2) {
    grid-area: b;
}

.page-home .gallery-item:nth-child(3) {
    grid-area: c;
}

.page-home .gallery-item:nth-child(4) {
    grid-area: d;
}

.page-home .gallery-item:nth-child(5) {
    grid-area: e;
}

.page-home .gallery-item:nth-child(6) {
    grid-area: f;
}

.page-home .gallery-item:nth-child(7) {
    grid-area: g;
}

.page-home .gallery-item:nth-child(8) {
    grid-area: h;
}

.page-home .gallery-item:nth-child(9) {
    grid-area: i;
}

.page-home .gallery-item:nth-child(10) {
    grid-area: j;
}

.page-home .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.page-home .gallery-item:hover img {
    transform: scale(1.03);
    filter: saturate(1.05);
}

.page-home .gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.page-home .lightbox-content {
    background: white;
    padding: 10px;
    border-radius: 16px;
    width: 95%;
    max-width: 1000px;
    position: relative;
}

.page-home .lightbox-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.page-home .lightbox-caption {
    margin-top: 10px;
    color: #333;
    font-size: 0.95rem;
    text-align: center;
}

@media (min-width: 768px) {
    .page-home .container {
        padding: 0 40px;
    }

    .page-home .hero-content {
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
    }

    .page-home .hero-image-container {
        min-height: 600px;
    }

    .page-home .services-nav-content {
        gap: 60px;
    }

    .page-home .contact-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 600px;
        gap: 20px;
    }

        .page-home .contact-button,
        .page-home .contact-email,
    .page-home .contact-phone {
        width: auto;
        min-width: 200px;
        flex: 1;
    }
}

@media (min-width: 768px) {
    .page-home .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        grid-template-areas:
            "a b"
            "a c"
            "d e"
            "f g"
            "h i"
        "j j";
    }

    .page-home .press-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-home .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
        grid-template-areas:
            "a a b"
            "a a c"
            "d e f"
            "g h i"
        "j j j";
    }

    .page-home .hero-text .logo-image {
        height: 100px;
        margin-bottom: 25px;
    }

    .page-home .hero-text h2 {
        font-size: 2.2rem;
    }

    .page-home .hero-content {
        grid-template-columns: 1.2fr 1fr;
    }

    .page-home .section-title {
        font-size: 2.5rem;
    }

    .page-home .press-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .page-home .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
        grid-template-areas:
            "a a b c"
            "a a d d"
            "e f g h"
        "e i j h";
    }
}

@media (max-width: 767px) {
    .page-home .container {
        padding: 0 15px;
        text-align: center;
    }

    .page-home .hero-text {
        text-align: center;
    }

    .page-home .hero-text .logo-image {
        height: 60px;
        margin-bottom: 15px;
    }

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

    .page-home .hero-image-container {
        display: none;
    }

    .page-home .hero-text-container {
        padding: 40px 20px;
        text-align: center;
    }

    .page-home .services-nav-content {
        flex-direction: row;
        gap: 5px;
        font-size: 1rem;
        justify-content: center;
    }

    .page-home .section-header {
        text-align: center;
    }

    .page-home .contact-section h2 {
        font-size: 1.8rem;
    }

    .page-home .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-home .contact-buttons {
        margin: 30px 0;
        gap: 12px;
    }

        .page-home .contact-button,
        .page-home .contact-email,
    .page-home .contact-phone {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .page-home .gallery-section {
        padding: 40px 0;
    }

    .page-home .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .page-home .gallery-item {
        border-radius: 12px;
    }

    .page-home .gallery-caption {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

        .page-home .hero-section,
        .page-home .approach-section,
        .page-home .overview-section,
        .page-home .equipment-section,
        .page-home .director-section,
        .page-home .practitioners-section,
    .page-home .studio-section {
        padding: 20px 0;
    }

    .page-home .contact-section {
        padding: 40px 0;
    }

    .page-home .studio-section {
        padding: 20px 0 0;
    }

    .page-home .approach-content h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .page-home .approach-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .page-home .konnector-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-home .konnector-image {
        height: 300px;
    }

    .page-home .konnector-content {
        text-align: center;
    }

    .page-home .konnector-content h3 {
        font-size: 25px;
    }

    .page-home .konnector-content p {
        font-size: 1.1rem;
    }

    .page-home .director-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-home .director-image {
        height: 300px;
    }

    .page-home .director-content {
        text-align: center;
    }

    .page-home .director-content h3 {
        font-size: 25px;
    }

    .page-home .director-content p {
        font-size: 1.1rem;
    }

    .page-home .modal-practitioner {
        flex-direction: column;
        text-align: center;
    }

    .page-home .modal-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .page-home .floating-button {
        height: 45px;
        padding: 0 15px;
        bottom: 20px;
        right: 20px;
        font-size: 0.8rem;
    }

    .page-home .location-info {
        text-align: center;
    }

    .page-home .footer {
        text-align: center;
    }
}

.page-home .map {
    padding-bottom: 0 !important;
    padding-top: 20px !important;
}

.page-home .full-width-section iframe {
    border: 0;
}

.page-home .footer-board-reference {
    margin-top: 20px;
    padding-top: 20px;
}

.page-home .footer-board-reference a {
    color: #FFF;
    text-decoration: none;
}

.page-fitness .fitness-hero {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.page-fitness .fitness-hero h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-fitness .fitness-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.page-fitness .service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
    text-align: left;
    height: 100%;
}

.page-fitness .service-card:hover {
    transform: translateY(-5px);
}

.page-fitness .service-card:focus-visible {
    outline: 3px solid rgba(44, 85, 48, 0.35);
    outline-offset: 4px;
}

.page-fitness .service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-fitness .service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.page-fitness .service-content h2 {
    font-size: 1.8rem;
    color: #2c5530;
    font-weight: 500;
    margin: 0;
}

.page-fitness .service-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.page-fitness .service-content p a {
    color: #2c5530;
    font-weight: 500;
    text-decoration: underline;
}

.page-fitness .service-content p a:hover {
    text-decoration: none;
}

.page-fitness .service-link {
    display: inline-block;
    color: #2c5530;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 0 0;
    position: relative;
    font-size: 1.1rem;
    margin-top: auto;
    align-self: flex-start;
}

.page-fitness .service-link:hover::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .page-fitness .fitness-hero {
        padding: 60px 0;
    }

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

    .page-fitness .fitness-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

.page-education .education-hero {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.page-education .education-hero h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-education .education-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.page-education .education-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-education .education-section {
    margin-bottom: 60px;
}

.page-education .education-section:last-child {
    margin-bottom: 0;
}

.page-education .education-section h2 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-education .education-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-education .education-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.page-education .education-section li {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.page-education .education-section li::before {
    content: "•";
    color: #2c5530;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.page-education .cta-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.page-education .cta-box h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-education .cta-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-education .education-hero {
        padding: 60px 0;
    }

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

    .page-education .education-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .page-education .education-content {
        padding: 40px 20px;
    }

    .page-education .education-section h2 {
        font-size: 1.8rem;
    }

    .page-education .cta-box {
        padding: 30px 20px;
    }

    .page-education .cta-box h3 {
        font-size: 1.6rem;
    }
}
.page-physio .physio-hero {
        background: white;
        padding: 80px 0;
        text-align: center;
    }

    .page-physio .physio-hero h1 {
        font-size: 2.5rem;
        color: #2c5530;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .page-physio .physio-hero p {
        font-size: 1.2rem;
        color: #666;
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.7;
    }

    .page-physio .service-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        text-decoration: none;
        color: inherit;
    }

    .page-physio .service-card:hover {
        transform: translateY(-5px);
    }

    .page-physio .service-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        font-size: 1.1rem;
        overflow: hidden;
        transform: scale(1.1);
    }

    .page-physio .service-content {
        padding: 30px;
    }

    .page-physio .service-content h2 {
        font-size: 1.8rem;
        color: #2c5530;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .page-physio .service-content p {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .page-physio .service-techniques {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-physio .service-techniques h3 {
        font-size: 1.3rem;
        color: #2c5530;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .page-physio .service-techniques ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-physio .service-techniques li {
        color: #666;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        display: flex;
        align-items: baseline;
        gap: 10px;
        flex-wrap: wrap;
    }

    .page-physio .service-techniques li::before {
        content: "•";
        color: #2c5530;
        position: absolute;
        left: 0;
        top: 0.35em;
    }

    .page-physio .service-techniques li span {
        flex: 0 1 auto;
    }

    .page-physio .learn-more {
        background: none;
        border: none;
        color: #2c5530;
        font-weight: 500;
        cursor: pointer;
        padding: 0;
        font-size: 0.95rem;
        text-decoration: underline;
    }

    .page-physio .learn-more:hover,
    .page-physio .learn-more:focus {
        text-decoration: none;
    }

    .page-physio .learn-more:focus-visible {
        outline: 3px solid rgba(44, 85, 48, 0.35);
        outline-offset: 4px;
    }

    .page-physio .service-link {
        display: inline-block;
        color: #2c5530;
        font-weight: 500;
        text-decoration: none;
        padding: 10px 0;
        position: relative;
    }

    .page-physio .service-link::after {
        content: '→';
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .page-physio .service-link:hover::after {
        transform: translateX(5px);
    }

    @media (max-width: 768px) {
        .page-physio .physio-hero {
            padding: 60px 0;
        }

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

        .page-physio .physio-hero p {
            font-size: 1.1rem;
            padding: 0 20px;
        }
    }

        .page-contact .header-section {
            background: white;
            padding: 40px 0;
            border-bottom: 1px solid #eee;
        }

        .page-contact .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .page-contact .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .page-contact .logo-image {
            height: 60px;
        }

        .page-contact .back-link {
            color: #2c5530;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 20px;
            border: 2px solid #2c5530;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .page-contact .back-link:hover {
            background: #2c5530;
            color: white;
        }

        .page-contact .main-content {
            background: #f8f9fa;
            min-height: calc(100vh - 200px);
            padding: 60px 0;
        }

        .page-contact .content-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
        }

        .page-contact .page-title {
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .page-contact .page-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-contact .form-container {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            max-width: 700px;
        }

        .page-contact .form-iframe {
            width: 100%;
            height: 1122px;
            border: none;
            border-radius: 10px;
        }

        .page-contact .benefits-section {
            margin-top: 20px;
            text-align: left;
            padding: 0 30px;
        }

        .page-contact .benefits-title {
            font-size: 1.5rem;
            color: #2c5530;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }

        .page-contact .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-contact .benefits-list li {
            padding: 10px 0;
            color: #666;
            font-size: 1.1rem;
            position: relative;
            padding-left: 30px;
        }

        .page-contact .benefits-list li:before {
            content: "✓";
            color: #15652D;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 10px;
        }

        @media (max-width: 768px) {
            .page-contact .header-content {
                padding: 0 20px;
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .page-contact .content-container {
                padding: 0 20px;
            }

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

            .page-contact .page-subtitle {
                font-size: 1.1rem;
            }

            .page-contact .form-container {
                padding: 20px;
                margin: 0 10px;
            }

            .page-contact .form-iframe {
                height: 900px;
            }

            .page-contact .footer-content {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .page-contact .form-iframe {
                height: 800px;
            }

            .page-contact .page-title {
                font-size: 1.8rem;
            }

            .page-contact .benefits-list li {
                font-size: 1rem;
            }
        }

        .page-ervin .hero-section {
            background: white;
            padding: 30px 0 60px 0;
            min-height: 500px;
        }

        .page-ervin .hero-content {
            display: grid;
            grid-template-columns: .5fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-ervin .hero-image-container {
            position: relative;
        }

        .page-ervin .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
        }

        .page-ervin .hero-text-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .page-ervin .hero-text h1 {
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.2;
        }

        .page-ervin .hero-text {
            text-align: center;
        }

        .page-ervin .hero-text .role {
            font-size: 1.3rem;
            color: #15652D;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .page-ervin .hero-text p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .page-ervin .about-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .page-ervin .about-content {
            max-width: 900px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .page-ervin .about-content h2 {
            font-size: 2rem;
            color: #2c5530;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .page-ervin .bio-subheading {
            font-size: 1.3rem;
            color: #15652D;
            margin: 30px 0 20px 0;
            font-weight: 600;
        }

        .page-ervin .about-content p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .page-ervin .about-content p:last-child {
            margin-bottom: 0;
        }

        .page-ervin .qualifications-section {
            background: white;
            padding: 80px 0;
        }

        .page-ervin .qualifications-content {
            max-width: 900px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .page-ervin .qualifications-content h2 {
            font-size: 2rem;
            color: #2c5530;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .page-ervin .qualifications-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            justify-content: center;
        }

        .page-ervin .qualification-category h3 {
            font-size: 1.3rem;
            color: #15652D;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .page-ervin .qualification-category {
            text-align: left;
            margin-left: auto;
            margin-right: auto;
        }

        .page-ervin .qualification-category ul {
            list-style: none;
            padding: 0;
        }

        .page-ervin .qualification-category li {
            color: #666;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .page-ervin .qualification-category li:before {
            content: "•";
            color: #2c5530;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .page-ervin .philosophy-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .page-ervin .philosophy-content {
            text-align: center;
        }

        .page-ervin .philosophy-content h2 {
            font-size: 2rem;
            color: #2c5530;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .page-ervin .philosophy-quote {
            font-size: 1.3rem;
            color: #2c5530;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 30px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            border-left: 4px solid #2c5530;
        }

        .page-ervin .philosophy-content p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
        }

        .page-ervin .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #2c5530;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
            margin-bottom: 30px;
        }

        .page-ervin .back-button:hover {
            background: #15652D;
            color: white;
        }

        .page-ervin .back-button svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 768px) {
            .page-ervin .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .page-ervin .hero-image {
                height: 300px;
            }

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

            .page-ervin .qualifications-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

                .page-ervin .hero-section,
                .page-ervin .about-section,
                .page-ervin .qualifications-section,
            .page-ervin .philosophy-section {
                padding: 30px 0 30px 0;
            }

            .page-ervin .philosophy-quote {
                font-size: 1.1rem;
                padding: 20px;
            }
        }

        .page-konnector .hero-equipment {
            background: white;
            padding: 60px 0;
        }

        .page-konnector .hero-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .page-konnector .hero-content {
            text-align: left;
        }

        .page-konnector .hero-image-container {
            text-align: center;
        }

        .page-konnector .equipment-image {
            width: 100%;
            max-width: 600px;
            height: auto;
        }

        .page-konnector .tagline {
            font-size: 2.5rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .page-konnector .subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
        }

        .page-konnector .about-section .section-header {
            margin-bottom: 20px;
        }

        .page-konnector .about-section .section-header h2 {
            font-size: 1.8rem;
            color: #2c5530;
            font-weight: 600;
        }

        .page-konnector .section-content {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .page-konnector .section-content:last-child {
            margin-bottom: 0;
        }

        .page-konnector .benefit-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 10px;
            height: 100%;
            display: flex;
            flex-direction: column;
            border-left: 5px solid #2c5530;
        }

        .page-konnector .benefit-content {
            padding: 30px;
            text-align: left;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .page-konnector .benefit-title {
            font-size: 1.3rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .page-konnector .benefit-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            flex: 1;
        }

        .page-konnector .feature-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 10px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .page-konnector .feature-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .page-konnector .feature-card-content {
            padding: 30px;
            text-align: left;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .page-konnector .feature-name {
            font-size: 1.4rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .page-konnector .feature-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            flex: 1;
        }

        .page-konnector .session-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .page-konnector .session-type {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 200px;
        }

        .page-konnector .session-title {
            font-size: 1.3rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .page-konnector .session-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            flex: 1;
        }

        .page-konnector .session-price {
            font-size: 14px;
            color: white;
            font-weight: 400;
            background: #2c5530;
            padding: 5px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-top: auto;
            align-self: flex-start;
        }

        .page-konnector .video-container {
            max-height: 450px;
            padding-bottom: 0;
            height: 450px;
        }

        .page-konnector .video-container iframe {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .page-konnector .cta-section {
            background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 100%);
            color: white;
            padding: 80px 0;
            margin: 40px auto;
            border-radius: 15px;
            text-align: center;
            max-width: 85%;
        }

        .page-konnector .cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .page-konnector .cta-description {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        @media (min-width: 768px) {
            .page-konnector .container {
                padding: 0 40px;
            }

            .page-konnector .hero-layout {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .page-konnector .hero-content {
                order: 1;
            }

            .page-konnector .hero-image-container {
                order: 2;
            }

            .page-konnector .session-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .page-konnector .contact-info {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }
        }

        @media (min-width: 1024px) {

            .page-konnector .hero-layout {
                grid-template-columns: 1.2fr 1fr;
                gap: 80px;
            }

            .page-konnector .tagline {
                font-size: 3rem;
            }

            .page-konnector .subtitle {
                font-size: 1.3rem;
            }

            .page-konnector .about-section .section-header h2 {
                font-size: 2rem;
            }

            .page-konnector .section-title {
                font-size: 2.5rem;
            }

            .page-konnector .session-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }

            .page-konnector .cta-title {
                font-size: 2.8rem;
            }

            .page-konnector .cta-description {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 767px) {
            .page-konnector .container {
                padding: 0 15px;
            }

            .page-konnector .hero-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .page-konnector .hero-content {
                order: 2;
                text-align: center;
            }

            .page-konnector .hero-image-container {
                order: 1;
            }

            .page-konnector .tagline {
                font-size: 2rem;
            }

            .page-konnector .subtitle {
                font-size: 1rem;
            }

            .page-konnector .about-section .section-header h2 {
                font-size: 1.5rem;
            }

            .page-konnector .video-container {
                max-height: 300px;
                height: 300px;
            }

            .page-konnector .section-title {
                font-size: 1.8rem;
            }

            .page-konnector .cta-title {
                font-size: 1.8rem;
            }

            .page-konnector .cta-description {
                font-size: 1rem;
            }

                .page-konnector .hero-equipment,
                .page-konnector .section-white,
                .page-konnector .section-gray,
                .page-konnector .cta-section,
            .page-konnector .contact-section {
                padding: 40px 0;
            }

            .page-konnector .floating-button {
                height: 45px;
                padding: 0 15px;
                bottom: 20px;
                right: 20px;
                font-size: 0.8rem;
            }
        }

        .page-gyrotonics .hero-equipment {
            background: white;
            padding: 60px 0;
        }

        .page-gyrotonics .hero-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .page-gyrotonics .hero-content {
            text-align: left;
        }

        .page-gyrotonics .hero-image-container {
            text-align: center;
        }

        .page-gyrotonics .equipment-image {
            width: 100%;
            max-width: 600px;
            height: auto;
        }

        .page-gyrotonics .tagline {
            font-size: 2.5rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .page-gyrotonics .subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
        }

        .page-gyrotonics .about-section .section-header {
            margin-bottom: 20px;
        }

        .page-gyrotonics .about-section .section-header h2 {
            font-size: 1.8rem;
            color: #2c5530;
            font-weight: 600;
        }

        .page-gyrotonics .section-content {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .page-gyrotonics .section-content:last-child {
            margin-bottom: 0;
        }

        .page-gyrotonics .benefit-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 10px;
            height: 100%;
            display: flex;
            flex-direction: column;
            border-left: 5px solid #2c5530;
        }

        .page-gyrotonics .benefit-content {
            padding: 30px;
            text-align: left;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .page-gyrotonics .benefit-title {
            font-size: 1.3rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .page-gyrotonics .benefit-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            flex: 1;
        }

        .page-gyrotonics .equipment-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 10px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .page-gyrotonics .equipment-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .page-gyrotonics .equipment-card-content {
            padding: 30px;
            text-align: left;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .page-gyrotonics .equipment-name {
            font-size: 1.4rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .page-gyrotonics .equipment-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            text-align: center;
            flex: 1;
        }

        .page-gyrotonics .session-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .page-gyrotonics .session-type {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 200px;
        }

        .page-gyrotonics .session-title {
            font-size: 1.3rem;
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .page-gyrotonics .session-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            flex: 1;
        }

        .page-gyrotonics .session-price {
            font-size: 14px;
            color: white;
            font-weight: 400;
            background: #2c5530;
            padding: 5px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-top: auto;
            align-self: flex-start;
        }

        .page-gyrotonics .video-container {
            max-height: 450px;
            padding-bottom: 0;
            height: 450px;
        }

        .page-gyrotonics .video-container iframe {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .page-gyrotonics .cta-section {
            background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 100%);
            color: white;
            padding: 80px 0;
            margin: 40px auto;
            border-radius: 15px;
            text-align: center;
            max-width: 85%;
        }

        .page-gyrotonics .cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .page-gyrotonics .cta-description {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        @media (min-width: 768px) {
            .page-gyrotonics .container {
                padding: 0 40px;
            }

            .page-gyrotonics .hero-layout {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .page-gyrotonics .hero-content {
                order: 1;
            }

            .page-gyrotonics .hero-image-container {
                order: 2;
            }

            .page-gyrotonics .session-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .page-gyrotonics .contact-info {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }
        }

        @media (min-width: 1024px) {

            .page-gyrotonics .hero-layout {
                grid-template-columns: 1.2fr 1fr;
                gap: 80px;
            }

            .page-gyrotonics .tagline {
                font-size: 3rem;
            }

            .page-gyrotonics .subtitle {
                font-size: 1.3rem;
            }

            .page-gyrotonics .about-section .section-header h2 {
                font-size: 2rem;
            }

            .page-gyrotonics .section-title {
                font-size: 2.5rem;
            }

            .page-gyrotonics .session-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }

            .page-gyrotonics .cta-title {
                font-size: 2.8rem;
            }

            .page-gyrotonics .cta-description {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 767px) {
            .page-gyrotonics .container {
                padding: 0 15px;
            }

            .page-gyrotonics .hero-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .page-gyrotonics .hero-content {
                order: 2;
                text-align: center;
            }

            .page-gyrotonics .hero-image-container {
                order: 1;
            }

            .page-gyrotonics .tagline {
                font-size: 2rem;
            }

            .page-gyrotonics .subtitle {
                font-size: 1rem;
            }

            .page-gyrotonics .about-section .section-header h2 {
                font-size: 1.5rem;
            }

            .page-gyrotonics .video-container {
                max-height: 300px;
                height: 300px;
            }

            .page-gyrotonics .section-title {
                font-size: 1.8rem;
            }

            .page-gyrotonics .cta-title {
                font-size: 1.8rem;
            }

            .page-gyrotonics .cta-description {
                font-size: 1rem;
            }

                .page-gyrotonics .hero-equipment,
                .page-gyrotonics .section-white,
                .page-gyrotonics .section-gray,
                .page-gyrotonics .cta-section,
            .page-gyrotonics .contact-section {
                padding: 40px 0;
            }

            .page-gyrotonics .floating-button {
                height: 45px;
                padding: 0 15px;
                bottom: 20px;
                right: 20px;
                font-size: 0.8rem;
            }
        }
