/* General Wrapper & Reset constraints */
.tp-f60558b4-wrapper {
    font-family: 'Lato', 'Archivo', 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #292828;
    background: transparent;
    overflow-x: hidden;
}

.tp-f60558b4-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.tp-f60558b4-container--narrow {
    max-width: 740px;
}

/* Grids */
.tp-f60558b4-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tp-f60558b4-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Sections & Spacings */
.tp-f60558b4-section-gap {
    padding: 100px 0;
}

@media (max-width: 1024px) {
    .tp-f60558b4-section-gap {
        padding: 75px 0;
    }
    .tp-f60558b4-grid-2 {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tp-f60558b4-section-gap {
        padding: 60px 0;
    }
    .tp-f60558b4-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tp-f60558b4-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Typography elements */
.tp-f60558b4-h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.tp-f60558b4-h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.tp-f60558b4-h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.tp-f60558b4-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #CE74B2; /* czerw */
    margin: 25px 0 15px 0;
}

.tp-f60558b4-description,
.tp-f60558b4-rich-text p {
    font-size: 17px;
    line-height: 1.65;
    color: #292828;
    margin: 0 0 15px 0;
}

.tp-f60558b4-rich-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tp-f60558b4-h1 {
        font-size: 36px;
    }
    .tp-f60558b4-h2 {
        font-size: 28px;
    }
    .tp-f60558b4-h3 {
        font-size: 20px;
    }
    .tp-f60558b4-subtitle {
        font-size: 15px;
        margin: 20px 0 10px 0;
    }
}

/* Meta boxes (Specjalizacja & Podejście) */
.tp-f60558b4-meta-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tp-f60558b4-meta-box:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
}

.tp-f60558b4-meta-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #7A7A7A;
    margin: 0 0 4px 0;
}

.tp-f60558b4-meta-value {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Contact box in HERO */
.tp-f60558b4-contact-box {
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tp-f60558b4-contact-item {
    font-size: 16px;
    margin: 6px 0;
    color: #292828;
}

.tp-f60558b4-contact-item a {
    color: #292828;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tp-f60558b4-contact-item a:hover {
    color: #CE74B2;
}

/* Hero elements */
.tp-f60558b4-hero {
    padding: 80px 0;
}

.tp-f60558b4-hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.tp-f60558b4-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 580px;
    border-radius: 12px;
}

/* Buttons and Links */
.tp-f60558b4-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.tp-f60558b4-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.tp-f60558b4-btn--primary {
    background-color: #7CCEBD; /* zielo */
    color: #ffffff !important;
}

.tp-f60558b4-btn--primary:hover {
    background-color: #63b3a3;
    transform: translateY(-2px);
}

.tp-f60558b4-btn--secondary {
    background-color: #CE74B2; /* czerw */
    color: #ffffff !important;
}

.tp-f60558b4-btn--secondary:hover {
    background-color: #b75e9b;
    transform: translateY(-2px);
}

.tp-f60558b4-btn--outline {
    background-color: transparent;
    border: 1px solid #292828;
    color: #292828 !important;
}

.tp-f60558b4-btn--outline:hover {
    background-color: #292828;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.tp-f60558b4-link {
    font-size: 16px;
    font-weight: 700;
    color: #292828;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tp-f60558b4-link:hover {
    color: #CE74B2;
}

/* Section elements styling */
.tp-f60558b4-text-center {
    text-align: center;
}

.tp-f60558b4-mt-small {
    margin-top: 15px;
}

.tp-f60558b4-mt-medium {
    margin-top: 30px;
}

.tp-f60558b4-mt-large {
    margin-top: 50px;
}

/* Section 2: Cards */
.tp-f60558b4-card {
    background-color: #F0E7CB47; /* delikatny beż */
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tp-f60558b4-card:hover {
    transform: translateY(-4px);
}

.tp-f60558b4-card-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Highlighted Box */
.tp-f60558b4-highlight-box {
    background-color: #F0E7CB47; /* delikatny beż */
    padding: 60px;
    border-radius: 16px;
}

.tp-f60558b4-highlight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tp-f60558b4-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    background-color: rgba(124, 206, 189, 0.15);
    color: #7CCEBD;
}

@media (max-width: 768px) {
    .tp-f60558b4-highlight-box {
        padding: 30px 20px;
    }
}

/* Sub-card (Group Support Section) */
.tp-f60558b4-sub-card {
    border-left: 4px solid #CE74B2; /* czerw */
    padding-left: 30px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .tp-f60558b4-sub-card {
        padding-left: 20px;
    }
}

/* Interactive CTA */
.tp-f60558b4-interactive-cta {
    position: relative;
    display: inline-block;
}

.tp-f60558b4-cta-panel {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
    text-align: center;
    background-color: rgba(124, 206, 189, 0.1);
    border: 1px dashed #7CCEBD;
    border-radius: 12px;
    padding: 0 30px;
}

@media (min-width: 1025px) {
    .tp-f60558b4-interactive-cta:hover .tp-f60558b4-cta-panel {
        opacity: 1;
        visibility: visible;
        max-height: 150px;
        padding: 20px 30px;
        margin-top: 20px;
    }
}

.tp-f60558b4-interactive-cta.active .tp-f60558b4-cta-panel {
    opacity: 1;
    visibility: visible;
    max-height: 150px;
    padding: 20px 30px;
    margin-top: 20px;
}

.tp-f60558b4-cta-item {
    margin: 8px 0;
    font-size: 16px;
    color: #292828;
}

.tp-f60558b4-cta-item a {
    color: #292828;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.tp-f60558b4-cta-item a:hover {
    color: #CE74B2;
}