/* METHODOLOGY PAGE STYLES */

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.method-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-number {
    font-size: 40px;
    font-weight: 800;
    color: #f2f2f7;
    margin-bottom: 20px;
    line-height: 1;
}

.method-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.method-card p {
    color: #555;
    line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumb {
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 0 20px;
    font-size: 14px;
    color: #86868b;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #0071e3;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #ccc;
}