/* Our Work Together Page Specific Styles */

.work-main-content {
    padding: 60px 74px 60px;
    position: relative;
    z-index: 5;
    max-width: 1440px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.intro-section {
    max-width: 1308px;
    margin: 0 auto;
}

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

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

.cbt-section {
    margin: 40px 0;
    padding: 32px;
    background: rgba(214, 51, 132, 0.05);
    border-radius: 16px;
    border-left: 4px solid #D63384;
    max-width: 1308px;
}

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

.intro-section h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #2C3E50;
    margin: 40px 0 20px 0;
}

.cbt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1282px;
}

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

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

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

/* Framework Section */
.framework-section {
    margin-bottom: 80px;
}

.triangle-explanation {
    margin-bottom: 40px;
    max-width: 800px;
}

.triangle-explanation p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #2C3E50;
    margin: 0;
}

.triangle-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.component-card {
    background: rgba(132, 196, 163, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(132, 196, 163, 0.2);
}

.component-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.component-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #2C3E50;
    margin-bottom: 16px;
}

.component-card p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2C3E50;
    margin: 0;
}

/* Expectations Section */
.expectations-section {
    margin-bottom: 80px;
}

.session-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
}

.session-phase {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 16px;
}

.phase-number {
    width: 48px;
    height: 48px;
    background: #D63384;
    color: #F7F3E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.session-phase h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #2C3E50;
    margin-bottom: 8px;
}

.session-phase p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2C3E50;
    margin: 0;
}

/* Tools Section */
.tools-section {
    margin-bottom: 80px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.tool-card {
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.15);
}

.tool-card h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.tool-card p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #2C3E50;
    margin: 0;
}

/* Structure Section */
.structure-section {
    margin-bottom: 80px;
}

.structure-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
}

.structure-item {
    padding: 20px;
    border-left: 4px solid #84C4A3;
    background: rgba(132, 196, 163, 0.05);
    border-radius: 0 8px 8px 0;
}

.structure-item h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #2C3E50;
    margin-bottom: 8px;
}

.structure-item p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2C3E50;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    margin-bottom: 80px;
}

.commitments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(214, 51, 132, 0.05);
    border-radius: 12px;
}

.commitment-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.commitment-item p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2C3E50;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 80px;
    background: rgba(247, 243, 233, 0.5);
    border-radius: 20px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.cta-section p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #2C3E50;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 48px;
    background: #D63384;
    border-radius: 12px;
    border: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #F7F3E9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
    background: #C32873;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

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

@media (max-width: 1200px) {
    .work-main-content {
        padding: 50px 40px 60px;
        min-height: calc(100vh - 170px);
    }
    
    .intro-section {
        text-align: center;
    }
    
    .work-title {
        text-align: center;
    }
    
    .intro-description {
        text-align: center;
    }
    
    .cbt-section {
        padding: 24px;
    }
    
    .section-subtitle {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .work-main-content {
        padding: 40px 24px 80px 24px;
        min-height: calc(100vh - 140px);
    }
    
    .intro-section {
        margin: 0;
        text-align: center;
    }
    
    .work-title {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        margin: 0 auto 24px auto;
        max-width: 320px;
    }
    
    .intro-description {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        margin: 0 auto 24px auto;
        max-width: 340px;
    }
    
    .cbt-section {
        margin: 32px 0;
        padding: 20px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 18px;
        line-height: 26px;
        text-align: center;
        margin: 0 0 16px 0;
    }
    
    .cbt-list li {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 16px;
        text-align: left;
        padding-left: 24px;
    }
    
    .section-title {
        font-size: 22px;
        line-height: 32px;
        margin: 0 0 20px 0;
    }
    
    .intro-description {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 24px 0;
        max-width: 100%;
    }
    
    .intro-section h3 {
        font-size: 18px;
        line-height: 26px;
        margin: 32px 0 16px 0;
    }
    
    .cbt-list {
        margin: 0 0 32px 0;
        max-width: 100%;
    }
    
    .cbt-list li {
        font-size: 16px;
        line-height: 28px;
        padding-left: 24px;
        margin-bottom: 12px;
    }
    
    .triangle-explanation {
        text-align: center;
        margin: 0 auto 32px auto;
    }
    
    .triangle-explanation p {
        text-align: center;
        margin: 0 auto;
        max-width: 340px;
    }
    
    .component-card {
        padding: 24px 20px;
        margin: 0 auto;
    }
    
    .session-flow {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .session-phase {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
        gap: 16px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tool-card {
        padding: 20px 24px;
        text-align: center;
    }
    
    .structure-content {
        margin: 0 auto;
    }
    
    .structure-item {
        padding: 16px 20px;
        margin: 0 4px;
    }
    
    .commitments {
        gap: 20px;
    }
    
    .commitment-item {
        padding: 20px 24px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cta-section {
        padding: 40px 24px;
        margin: 0 auto 60px auto;
    }
    
    .cta-section h2 {
        font-size: 24px;
        line-height: 32px;
        margin: 0 auto 20px auto;
        max-width: 320px;
    }
    
    .cta-section p {
        font-size: 16px;
        line-height: 26px;
        margin: 0 auto 32px auto;
        max-width: 340px;
    }
}