/* ===== 더맛푸드 전용 섹션 CSS (기존 코드와 충돌 방지) ===== */
.tmf-section {
    position: relative;
    display: block;
    width: 100%;
    clear: both;
    overflow: hidden;
    padding: 80px 0;
    background: #f8f8f8;
}

.tmf-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

.tmf-title {
    text-align: center;
    margin-bottom: 50px;
}

.tmf-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f1f3d;
    margin-bottom: 10px;
}

.tmf-title h2 span {
    color: #ff5a2f;
}

.tmf-title p {
    font-size: 18px;
    color: #666;
}

/* 핵심 경쟁력 */
.tmf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.tmf-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.tmf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tmf-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff5f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5a2f;
    font-size: 30px;
}

.tmf-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f1f3d;
    margin-bottom: 12px;
}

.tmf-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.tmf-number {
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-size: 38px;
    font-weight: 800;
    color: #f1f1f1;
}

/* 본사 시설 소개 */
.tmf-facility-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.tmf-facility-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tmf-facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tmf-facility-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.tmf-facility-content {
    padding: 20px;
}

.tmf-facility-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f1f3d;
    margin-bottom: 10px;
}

.tmf-facility-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* 창업 지원 프로세스 */
.tmf-process-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    margin-top: 50px;
}

.tmf-process-wrapper::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
}

.tmf-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tmf-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ff5a2f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5a2f;
    font-size: 34px;
}

.tmf-step-number {
    width: 32px;
    height: 32px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #ff5a2f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tmf-process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f1f3d;
    margin-bottom: 8px;
}

.tmf-process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tmf-note {
    margin-top: 40px;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 50px;
    text-align: center;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

/* 반응형 */
@media (max-width: 1024px) {
    .tmf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tmf-facility-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tmf-process-wrapper {
        flex-wrap: wrap;
    }

    .tmf-process-wrapper::before {
        display: none;
    }

    .tmf-process-step {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .tmf-title h2 {
        font-size: 32px;
    }

    .tmf-grid,
    .tmf-facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tmf-process-step {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .tmf-grid,
    .tmf-facility-grid {
        grid-template-columns: 1fr;
    }

    .tmf-process-step {
        flex: 0 0 100%;
    }
}


/* 더맛푸드 섹션 높이 강제 확보 */
.tmf-section {
    display: block;
    width: 100%;
    overflow: hidden;
    clear: both;
}

.tmf-container {
    display: block;
    width: 100%;
    overflow: hidden;
}