/* Methodology Page Specific Styles */

/* Framework Section */
.framework-section {
    padding: 100px 0;
    background: #fafafa;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.framework-card {
    background: white;
    padding: 60px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.framework-number {
    font-size: 14px;
    color: #999;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.framework-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.framework-card p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.framework-details {
    list-style: none;
}

.framework-details li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.framework-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: white;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 40px;
    font-style: italic;
}

.philosophy-explanation {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 60px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.principle-card {
    text-align: center;
    padding: 40px 20px;
}

.principle-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.principle-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.principle-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Mobile Responsive - Methodology Page */
@media (max-width: 768px) {
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .philosophy-quote {
        font-size: 28px;
    }
}