:root {
    --bg-color: #fdfbf7;
    /* Soft Cream */
    --text-primary: #333333;
    /* Dark Charcoal */
    --text-secondary: #666666;
    /* Softer Grey */
    --accent-color: #d4af37;
    /* Muted Gold */
    --accent-secondary: #b8963e;
    /* Darker Gold for hover states */
    --mild-brown: #9c8476;
    /* Lighter Muted Chocolate Brown */
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.4);

    /* Aliases used across subpage styles */
    --text-dark: #333333;
    --text-light: #666666;
    --font-header: 'Playfair Display', serif;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --nav-height: 80px;
    --top-bar-height: 45px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
/* Top Bar */
.top-bar {
    background-color: var(--mild-brown);
    /* Mild Brown */
    height: var(--top-bar-height);
    display: flex;
    justify-content: flex-end;
    /* Align right */
    align-items: center;
    color: var(--white);
    font-size: 0.75rem;
    /* Smaller font for narrow bar */
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 40px;
    /* Match navbar padding */
}

.top-bar-content {
    display: flex;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.top-bar-item i {
    font-size: 1.1rem;
}

.top-bar-item a i.fa-instagram {
    font-size: 1.5rem;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-item a:hover {
    opacity: 0.8;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: var(--nav-height);
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-center {
    flex: 0 0 auto;
    text-align: center;
    margin: 0 20px;
}

.logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    line-height: 1.2;
    color: var(--accent-color);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 300;
}

.cta-button {
    background-color: #222;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('images/zdj_3.webp');
    background-size: cover;
    background-position: center;
    color: var(--text-primary);
    padding: 0 20px;
}

.hero-content {
    max-width: 1000px;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem; /* Slightly smaller */
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem; /* Slightly smaller */
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.8;
    letter-spacing: 1px;
    color: #333;
}


.hero-cta {
    display: inline-block;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 12px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: transparent;
}

.hero-cta:hover {
    background-color: var(--text-primary);
    color: var(--white);
}



/* Sections */
.solutions-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.section-title .italic-text {
    font-style: italic;
    font-weight: 400;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 300px;
    padding: 35px 25px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-secondary);
}

.solution-icon {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    background-color: #fcf9f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: var(--accent-secondary);
    color: var(--white);
    transform: scale(1.1);
}

.solution-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .solution-card {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 650px) {
    .solutions-grid {
        gap: 15px;
    }
    .solution-card {
        flex: 0 1 calc(50% - 7.5px);
        min-width: 0;
    }
}

/* Single column on very small phones */
@media (max-width: 480px) {
    .solutions-grid {
        gap: 12px;
    }
    .solution-card {
        flex: 0 1 100%;
        min-width: 0;
        padding: 25px 20px;
    }
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #fdfbf7;
    /* Consistent bg */
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.value-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 300px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    background-color: #fcf9f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--accent-color);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* Responsive Values Grid */
@media (max-width: 1024px) {
    .value-card {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 650px) {
    .values-grid {
        gap: 15px;
    }
    .value-card {
        flex: 0 1 calc(50% - 7.5px);
        min-width: 0;
    }
}

/* Single column on very small phones */
@media (max-width: 480px) {
    .values-grid {
        gap: 12px;
    }
    .value-card {
        flex: 0 1 100%;
        min-width: 0;
        padding: 28px 20px;
    }
}

/* --- Zabiegi Page Specific Styles --- */

/* Intro Section: Czym jest kosmetologia */
.intro-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-list h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.intro-list ul {
    list-style: none;
    padding: 0;
}

.intro-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.intro-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Why Us Section */
.why-us-section {
    background-color: #faf9f6;
    /* Very light beige */
    padding: 4rem 20px;
    text-align: center;
    margin-bottom: 4rem;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 2rem;
    align-items: center;
}

.benefit-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: left;
}

.benefit-column.right {
    text-align: right;
}

/* Swap alignment for mobile readiness/visual balance if needed, 
   but for the requested design: Left col text aligns left? 
   Actually, looking at the ref image: 
   Left col text aligns right (towards image), Right col text aligns left (towards image). 
   Let's check the image again. 
   Ref image 1: Left column text is center-aligned or right-aligned? Hard to tell, looks centered or slightly towards image.
   Right column text looks centered.
   Let's stick to centered for now as it's safer, or align towards the center image.
*/

.benefit-item h4 {
    font-family: var(--font-header);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.why-us-image {
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 20px;
    /* Soft aesthetic */
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Treatment Content Styling */
.treatment-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.treatment-section-header {
    font-family: var(--font-header);
    font-size: 1.2rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.treatment-list {
    list-style: none;
    padding: 0;
}

.treatment-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.treatment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.4rem;
}

.treatment-full-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 100%;
    /* Allow full width */
}

.treatment-visual-break {
    margin: 3rem 0;
    /* More spacing for "breath" */
    width: 100%;
    height: 400px;
    /* Large, impactful image */
    border-radius: 4px;
    /* Slight rounding or sharp for elegance? 4px is subtle */
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 1px solid #eee;
}

.treatment-visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.treatment-visual-break:hover img {
    transform: scale(1.02);
    /* Subtle zoom effect */
}

/* Enhanced Treatment Content Styling */
.treatment-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    /* More gap */
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 968px) {

    .intro-section,
    .why-us-grid,
    .treatment-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-us-grid {
        display: flex;
        flex-direction: column-reverse;
        /* Image on top? Or benefits first? Let's stack naturally */
        flex-direction: column;
    }

    .benefit-column.right,
    .benefit-column {
        text-align: center;
    }

    .why-us-image {
        width: 100%;
        height: 300px;
        order: -1;
        /* Image first on mobile usually looks good */
    }
}

.site-footer {
    background-color: var(--mild-brown);
    /* Mild Brown */
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    justify-content: flex-end
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 5px;
    color: #f0f0f0;
    display: flex;
    justify-content: flex-end
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: flex-end;
}

.footer-column a:hover {
    opacity: 0.7;
}

/* Logo Column specific */
.logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--accent-color);
    text-align: center;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    padding-left: 0;
    margin-bottom: 20px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    justify-content: flex-end;
}

.footer-socials a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
}

ul {
    padding-left: 20px;
    /* Zmieniasz domyślne 40px na np. 20px */
}

.footer-socials a:hover {
    border-bottom-color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 20px 15px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    .logo-column {
        align-items: left;
    }
    .footer-column h3 {
        font-size: 0.85rem;
        margin-bottom: 10px;
        justify-content: center;
    }
    .footer-column p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 4px;
        justify-content: center;
    }
    .footer-column a {
        justify-content: center;
    }
    .footer-logo {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .footer-tagline {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    .footer-socials {
        margin-top: 20px;
        justify-content: center;
    }
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.75rem;
    }

    .logo-main {
        font-size: 1.4rem;
    }
}

@media (max-width: 900px) {
    .top-bar {
        padding: 0 15px;
        justify-content: center;
        letter-spacing: 0;
    }

    .top-bar-content {
        gap: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .top-bar-item {
        font-size: 0.6rem;
        gap: 5px;
    }

    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 2001;
        /* Above overlay */
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-center {
        margin: 0;
        flex: 1;
        text-align: left;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }
}

/* Subpage Headers */
.page-header {
    background-color: var(--bg-color);
    padding: 80px 20px 40px;
    text-align: center;
}



.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Accordion (Zabiegi) */
.treatments-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.treatment-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.treatment-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.treatment-header:hover {
    color: var(--accent-color);
}

.treatment-header .icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.treatment-content {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    opacity: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: all 0.8s ease;
    /* Slower animation speed */
}

.treatment-content.active {
    opacity: 1;
    padding-bottom: 20px;
}

/* Price List (Cennik) */
.price-list-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

.price-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-table td {
    padding: 1.4rem 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    vertical-align: middle;
    font-weight: 400;
}

.price-table .service-name {
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.price-table .variant-name {
    font-weight: 400;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    display: block;
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

.price-table td.price {
    text-align: right;
    font-weight: 400;
    color: var(--accent-color);
    white-space: nowrap;
    padding-left: 20px;
    font-size: 1.1rem;
}

.price-table .sub-items {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.price-table .sub-items li {
    padding-left: 1rem;
    position: relative;
}

.price-table .sub-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.price-table .sub-description {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    padding-left: 0;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .price-list-container {
        margin: 2rem auto;
    }
    .price-table {
        margin-bottom: 1.5rem;
    }
    .price-table td {
        padding: 1.2rem 0;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .price-table tr[style*="none"] td {
        padding: 0.4rem 0;
    }
    .price-table .service-name {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        display: block;
    }
    .price-table .variant-name {
        padding-left: 0.8rem;
        font-size: 0.8rem;
    }
    
    .price-table .variant-name::before {
        left: 0.2rem;
    }
    .price-table td.price {
        padding-left: 10px;
        font-size: 0.95rem;
    }
}

/* simplified About Section */
.about-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center; /* Center vertically */
}

.about-image-wrapper {
    flex: 0 0 32%; /* 20% smaller than previous 40% */
}

.about-image {
    width: 100%;
    min-height: 380px; /* Adjusted min-height */
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-content {
    flex: 1;
}

.about-header-mobile {
    display: none;
}

.about-header-desktop {
    display: block;
}

.about-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-content .subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-mission-simple {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-style: italic;
    color: var(--text-primary);
}

@media (max-width: 800px) {
    .about-header-desktop { display: none; }
    .about-header-mobile { display: block; text-align: center; margin-bottom: 25px; }
    .about-header-mobile h1 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 5px; color: var(--text-primary); }
    .about-header-mobile .subtitle { font-family: var(--font-body); font-size: 0.9rem; color: var(--accent-color); letter-spacing: 2px; text-transform: uppercase; }

    .about-container {
        flex-direction: column;
    }
    .about-image-wrapper {
        width: 100%;
        flex: none;
        margin-bottom: 20px;
    }
    .about-image {
        min-height: auto;
        max-height: 400px;
        aspect-ratio: 4/5;
    }
    .about-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .about-mission-simple {
        font-size: 0.85rem;
        padding-top: 15px;
        margin-top: 20px;
    }
    .location-content p,
    .location-details p {
        font-size: 0.85rem;
    }
}



/* Location Section (O nas) */
.location-section {
    padding: 20px 20px 80px;
    /* Less top padding as it follows about section */
    max-width: 1200px;
    margin: 0 auto;
}

.location-container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row;
    /* Text on left, Image on right */
}

.location-image {
    flex: 1;
    min-height: 400px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.location-content {
    flex: 1;
}

.location-details {
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

.location-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .location-container {
        flex-direction: column;
    }
}

/* Booking Section (Rezerwacja) */
.booking-section {
    padding: 40px 20px 80px;
    text-align: center;
}

.booking-info-split-wrapper {
    width: 100%;
    margin-top: 80px;
    padding: 0 20px;
}

.booking-info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
}

.booking-info-text {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
}

.booking-info-text h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.booking-info-text p {
    margin-bottom: 10px;
}

.booking-info-text p:last-child {
    margin-bottom: 0;
}

.booking-info-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 100%;
}

.booking-info-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .booking-info-split {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .booking-info-text {
        text-align: center;
    }
    
    .booking-info-image {
        max-width: 100%;
        margin-top: 20px;
    }
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-widget-placeholder {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border: 1px dashed #ccc;
    margin-bottom: 60px;
}

.booking-widget-placeholder i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.booking-widget-placeholder h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.large-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1rem;
}

.booking-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

/* Phone CTA Banner */
.phone-cta-banner {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
}

.phone-cta-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #fdf8f2 0%, #faf4ec 100%);
    border: 1px solid var(--accent-color);
    border-left: 5px solid var(--accent-color);
    border-radius: 14px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(180, 140, 80, 0.1);
}

.phone-cta-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.phone-cta-text {
    flex: 1;
    text-align: left;
}

.phone-cta-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.phone-cta-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.phone-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    cursor: default;
    user-select: text;
}

@media (max-width: 640px) {
    .phone-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    .phone-cta-text {
        text-align: center;
    }
    .phone-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Active Nav Link */
.nav-link.active {
    color: var(--accent-color);
    font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    /* Gold/Beige */
    text-decoration: underline;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: #aeb1aa;
    /* Muted grey/beige */
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Calendar Widget Styles */
.calendar-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #f0f0f0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.calendar-header h2 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    text-transform: capitalize;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-nav span {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.calendar-nav button {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.calendar-nav button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.calendar-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #eee;
}

/* Grid Layout */
.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Mon-Sat */
    gap: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.day-col-header {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Mon-Sat */
    gap: 10px;
    min-height: 200px;
}

.day-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Time Slot Buttons */
.time-slot {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.8rem 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.time-slot.booked {
    background: #eee;
    color: #bbb;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: transparent;
}

.time-slot.booked:hover {
    background: #eee;
    color: #bbb;
    transform: none;
    box-shadow: none;
}

.no-slots {
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
    padding: 1rem 0;
    font-style: italic;
}

/* Responsive Calendar — horizontal scroll on mobile */
@media (max-width: 768px) {
    .calendar-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .calendar-nav {
        align-self: center;
    }

    .calendar-wrapper {
        padding: 1rem;
    }

    /* Horizontal scroll — wrap header + grid together */
    .calendar-scroll-area {
        overflow-x: auto;
        overflow-y: auto;
        max-height: 280px;
        padding-bottom: 8px;
    }

    /* Make header scroll with the grid by giving it same min-width */
    .calendar-grid-header {
        display: grid;
        grid-template-columns: repeat(6, minmax(72px, 1fr));
        gap: 6px;
        min-width: 432px;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(72px, 1fr));
        gap: 6px;
        min-width: 432px;
        min-height: auto;
    }

    .day-col-header {
        font-size: 0.75rem;
        letter-spacing: 0;
        padding: 0 4px;
    }

    .time-slot {
        font-size: 0.8rem;
        padding: 0.55rem 0;
        border-radius: 4px;
        min-height: 36px;
    }
}

/* Scrollable Calendar Area */
.calendar-scroll-area {
    max-height: 280px;
    /* Adjust height as needed */
    overflow-y: auto;
    padding-right: 5px;
    /* Space for scrollbar */
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #f0f0f0;
}

.calendar-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.calendar-scroll-area::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.calendar-scroll-area::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 3px;
}

/* Modal Styles */
.modal-backdrop {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-title {
    font-family: var(--font-header);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

#selected-term {
    font-weight: 600;
    color: var(--accent-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cancel {
    background-color: #f0f0f0;
    color: var(--text-dark);
}

.btn-cancel:hover {
    background-color: #e0e0e0;
}

.btn-confirm {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 500;
}

.btn-confirm:hover {
    background-color: #aeb1aa;
    /* Muted darker shade */
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.4;
    cursor: pointer;
}

/* Success Modal Specifics */
.success-content {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 1.5rem;
}

.success-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mobile Menu Side Drawer */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80%;
    background-color: var(--bg-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-container.active {
    transform: translateX(0);
}

/* Backdrop pseudo-element overlaying rest of screen */
.mobile-menu-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: -1;
}

.mobile-menu-container.active::before {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
}

.mobile-nav-link:hover {
    color: var(--accent-color);
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Base Top Bar and Global Tweaks for Mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 0 15px;
        justify-content: center;
    }
    
    .top-bar-content {
        gap: 15px;
        font-size: 0.65rem;
    }

    .solutions-section, .values-section {
        padding: 40px 15px;
    }
}

/* Mobile Typography Polish */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .section-title,
    .why-us-title,
    .intro-text h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 30px 15px;
        text-align: center;
        margin: 2rem auto;
    }

    .intro-list li {
        text-align: left;
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 1.8rem;
    }
    .page-header {
        padding: 30px 15px 20px;
    }
    .page-subtitle {
        font-size: 0.85rem;
    }

    /* O nas & Location */
    .about-section {
        padding: 30px 15px;
    }
    .about-content h1 {
        font-size: 1.8rem;
    }
    .about-content .subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    .about-content p {
        margin-bottom: 12px;
        font-size: 0.8rem;
        line-height: 1.45;
    }
    .location-section {
        padding: 10px 15px 30px;
    }
    .location-image {
        min-height: 200px;
    }
    .location-container {
        gap: 20px;
    }
    .location-details p {
        font-size: 0.8rem;
    }

    /* Booking */
    .booking-section {
        padding: 20px 15px 40px;
    }
    .calendar-wrapper {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    .time-slot {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    .booking-info h3 {
        font-size: 1rem;
    }
    .booking-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }


    .solution-card, .value-card {
        padding: 15px 10px;
    }

    .solution-icon, .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .solution-card h3, .value-card h3 {
        font-size: 0.8rem;
        margin-bottom: 6px;
        letter-spacing: 0;
    }

    .solution-card p, .value-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

/* Treatment Details Styling */
.treatment-visual-break {
    margin: 2rem 0;
    text-align: center;
}

.treatment-image {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Treatment Details Styling */
.treatment-visual-break {
    display: none; /* Removed as requested */
}

.treatment-description-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.treatment-description-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    opacity: 0.3;
}

.treatment-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.treatment-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(193, 155, 118, 0.1);
    transition: transform 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-card h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(193, 155, 118, 0.1);
    padding-bottom: 0.8rem;
}

.treatment-card h4 i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.treatment-list {
    list-style: none;
    padding: 0;
}

.treatment-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.treatment-list li::before {
    content: "\f00c"; /* check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 3px;
}

.treatment-info-block {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(193, 155, 118, 0.08) 0%, rgba(193, 155, 118, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(193, 155, 118, 0.15);
    text-align: center;
}

.treatment-info-block p {
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.treatment-info-block .highlight-text {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    display: block;
}

@media (max-width: 992px) {
    .treatment-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Base Mobile Treatment Compact Overrides */
@media (max-width: 768px) {
    /* Restore stacked layout internally on mobile */
    .treatment-details-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        margin-top: 1rem !important;
        padding: 0 !important;
    }

    .treatments-container {
        margin-bottom: 30px;
    }
    .treatment-header {
        padding: 15px 0;
        font-size: 1rem;
    }

    .treatment-card {
        padding: 0.8rem;
        box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    }
    .treatment-content,
    .treatment-content p,
    .treatment-card p,
    .treatment-card h4,
    .treatment-card h4 i,
    .treatment-list li,
    .treatment-list li::before,
    .treatment-info-block p,
    .treatment-description-intro,
    .treatment-description-intro p,
    .treatment-info-block .highlight-text {
        font-size: 0.85rem !important;
        line-height: 1.45;
    }
    .treatment-card p {
        margin-bottom: 0.5rem;
    }
    .treatment-card h4 {
        margin-bottom: 0.6rem;
        padding-bottom: 0.4rem;
        gap: 6px;
    }
    .treatment-list li {
        margin-bottom: 0.3rem;
        padding-left: 0.9rem;
    }
    .treatment-list li::before {
        top: 2px;
    }
    .treatment-info-block {
        margin-top: 1rem;
        padding: 0.8rem;
    }
    .treatment-info-block p {
        margin-bottom: 0.5rem;
    }
    .treatment-info-block .highlight-text {
        margin-top: 0.6rem;
    }
    .treatment-image {
        max-height: 180px;
    }
    .treatment-description-intro,
    .treatment-description-intro p {
        margin-bottom: 0.8rem;
        padding-bottom: 0;
    }

    /* Calendar & Booking Modal Mobile Polish */
    .calendar-scroll-area {
        max-height: 280px !important; /* Roughly 5-6 visible rows */
    }
    .modal-content {
        padding: 1.5rem !important;
        width: 95% !important;
        border-radius: 8px;
    }
    .modal-title {
        font-size: 1.2rem !important;
    }
    .modal-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1.2rem !important;
    }
    .form-group {
        margin-bottom: 1rem !important;
    }
    .form-group label {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
    }
    .form-group input {
        padding: 8px !important;
        font-size: 0.85rem !important;
    }
    .form-actions {
        margin-top: 1.5rem !important;
        gap: 0.8rem !important;
    }
    .form-actions button {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }
    .checkbox-group label {
        font-size: 0.75rem !important;
    }
    .success-content {
        padding: 2rem 1.5rem !important;
    }
    .success-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        margin-bottom: 1rem !important;
    }
}

/* Bento Grid Layout (Strona Główna - Puzzle) */
.bento-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, 1fr);
    gap: 30px;
}

.bento-grid .value-card {
    margin: 0;
    min-width: 0;
    flex: none;
    height: 100%;
}

.value-image-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.value-image-card:hover img {
    transform: scale(1.05);
}

@media (min-width: 900px) {
    .bento-text-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .bento-img-1  { grid-column: 2 / 4; grid-row: 1 / 2; }
    .bento-img-2  { grid-column: 1 / 2; grid-row: 2 / 4; }
    .bento-text-2 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .bento-text-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
    .bento-img-3  { grid-column: 2 / 4; grid-row: 3 / 4; }
}

@media (max-width: 899px) {
    .bento-grid {
        display: flex !important;
        flex-direction: column;
        gap: 15px !important;
    }
    .value-image-card { height: 180px !important; }
    
    .bento-grid .value-card {
        padding: 20px 15px !important;
    }
    .bento-grid .value-card h3 {
        font-size: 1.15rem !important;
    }
    .bento-grid .value-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    .value-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.4rem !important;
        margin-bottom: 12px !important;
    }

    /* Scaling down other big elements for mobile */
    .hero-title { font-size: 2.2rem !important; }
    .hero-subtitle { font-size: 1rem !important; }
    .section-title { font-size: 1.8rem !important; margin-bottom: 30px !important; }
    
    .solutions-section { padding: 40px 15px !important; }
    .solution-card { 
        padding: 20px 15px !important; 
        min-width: 0 !important; 
    }
    .solution-card h3 { font-size: 1.1rem !important; }
    .solution-card p { font-size: 0.85rem !important; line-height: 1.4 !important; }
    .solution-icon { 
        width: 45px !important; 
        height: 45px !important; 
        font-size: 1.4rem !important; 
        margin-bottom: 15px !important; 
    }
    
    .booking-info-split-wrapper { margin-top: 30px !important; }
    
    /* Rezerwacja: Text -> Image -> Phone CTA */
    .booking-info-split { 
        padding: 15px !important; 
        display: flex; 
        flex-direction: column; 
    }
    .booking-info-text { 
        display: block;
        margin-bottom: 10px;
    }
    .booking-info-text h3 { font-size: 1.25rem !important; margin-bottom: 15px; }
    .booking-info-text p { font-size: 0.85rem !important; line-height: 1.4 !important; margin-bottom: 8px; }
    .booking-info-image { margin-top: 15px; width: 100%; max-width: 100%; }
    .phone-cta-banner { margin-top: 20px !important; }
    .phone-cta-inner { padding: 15px !important; flex-direction: column; text-align: center; gap: 15px; }
    
    .phone-cta-icon i { font-size: 1.8rem !important; }
}