/* Our Work Together Page - Card-Based Design */

.work-main-content {
    padding: 40px 74px 60px;
    position: relative;
    z-index: 5;
    max-width: 1440px;
    margin: 0 auto;
}

.work-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #2C3E50;
    margin-bottom: 24px;
}

.intro-section {
    margin-bottom: 40px;
}

.intro-description {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #2C3E50;
    max-width: 1282px;
}

/* Therapy Cards Section */
.therapy-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.therapy-card {
    background: rgba(74, 144, 226, 0.5);
    border-radius: 16px;
    padding: 32px 40px;
    max-width: 1308px;
    width: 100%;
}

/* Different color themes for cards */
.cbt-card {
    background: rgba(132, 196, 163, 0.4);
}

.expect-card {
    background: rgba(74, 144, 226, 0.5);
}

.first-session-card {
    background: rgba(214, 51, 132, 0.15);
}

.working-card {
    background: rgba(132, 196, 163, 0.3);
}

.between-sessions-card {
    background: rgba(74, 144, 226, 0.4);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.star-icon {
    width: 34px;
    height: 37px;
    object-fit: contain;
    flex-shrink: 0;
}

.card-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    color: #333333;
    margin: 0;
}

/* Card Content */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-content.two-columns {
    flex-direction: row;
    gap: 32px;
}

.card-intro, .card-outro {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    margin: 0;
}

.subsection-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #2C3E50;
    margin: 24px 0 16px 0;
}

/* Therapy Lists */
.therapy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.therapy-list.single-column {
    width: 100%;
}

.therapy-list li {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.therapy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D63384;
    font-weight: bold;
    font-size: 20px;
}

.therapy-list li strong {
    color: #2C3E50;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .work-main-content {
        padding: 40px 60px 60px;
    }

    .therapy-card {
        padding: 28px 32px;
    }

    .card-content.two-columns {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .work-main-content {
        padding: 32px 24px 100px;
    }

    .work-title {
        font-size: 26px;
        line-height: 38px;
        text-align: center;
        margin-bottom: 20px;
    }

    .intro-description {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
    }

    .intro-section {
        margin-bottom: 32px;
    }

    .therapy-cards {
        gap: 24px;
        margin-bottom: 40px;
    }

    .therapy-card {
        padding: 24px 20px;
    }

    .card-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .star-icon {
        width: 28px;
        height: 30px;
    }

    .card-header h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .card-intro, .card-outro {
        font-size: 16px;
        line-height: 26px;
    }

    .subsection-title {
        font-size: 18px;
        line-height: 26px;
        margin: 20px 0 12px 0;
    }

    .therapy-list li {
        font-size: 16px;
        line-height: 28px;
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .therapy-list li:before {
        font-size: 18px;
    }

    .card-content {
        gap: 12px;
    }

    .card-content.two-columns {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .work-main-content {
        padding: 24px 16px 120px;
    }

    .work-title {
        font-size: 24px;
        line-height: 34px;
    }

    .therapy-card {
        padding: 20px 16px;
    }

    .card-header h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .therapy-list li {
        font-size: 15px;
        line-height: 26px;
        padding-left: 20px;
    }
}
